about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pretty-errors/default.nix
blob: ce9b646a543c81f65b61b635748776496eb0d1c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, wheel
, colorama
}:

buildPythonPackage rec {
  pname = "pretty-errors";
  version = "1.2.25";
  pyproject = true;

  src = fetchPypi {
    pname = "pretty_errors";
    inherit version;
    hash = "sha256-oWulx1LIfCY7+S+LS1hiTjseKScak5H1ZPErhuk8Z1U=";
  };

  build-system = [
    setuptools
    wheel
  ];

  dependencies = [
    colorama
  ];

  pythonImportsCheck = [ "pretty_errors" ];

  # No test
  doCheck = false;

  meta = with lib; {
    description = "Prettifies Python exception output to make it legible";
    homepage = "https://pypi.org/project/pretty-errors/";
    license = licenses.mit;
    maintainers = with maintainers; [ GaetanLepage ];
  };
}