summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/stackprinter/default.nix
blob: 189cc0ab26417c7f0be739ff0348591a73f6f4ab (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  setuptools,
  numpy,

  pytestCheckHook,
}:
buildPythonPackage rec {
  pname = "stackprinter";
  version = "0.2.12";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "cknd";
    repo = "stackprinter";
    tag = version;
    hash = "sha256-Offow68i2Nh65sh5ZowlSdV1SKF2RIfwlRv4z1bCu+k=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    numpy
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "stackprinter"
    "stackprinter.colorschemes"
    "stackprinter.extraction"
    "stackprinter.formatting"
    "stackprinter.frame_formatting"
    "stackprinter.prettyprinting"
    "stackprinter.source_inspection"
    "stackprinter.tracing"
    "stackprinter.utils"
  ];

  meta = {
    description = "Debugging-friendly exceptions for Python";
    homepage = "https://github.com/cknd/stackprinter";
    changelog = "https://github.com/cknd/stackprinter/releases/tag/${version}";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ryand56 ];
  };
}