about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/tblib/default.nix
blob: 283bfcd83e402ae34050a2d2409baeeec0b4ff9e (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
{ lib
, buildPythonPackage
, fetchPypi

# build-system
, setuptools
}:

buildPythonPackage rec {
  pname = "tblib";
  version = "3.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-k2InkKCingTwNGRY+s4eFE3E0y9JNxTGw9/4Kkrbd+Y=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  meta = with lib; {
    description = "Traceback fiddling library. Allows you to pickle tracebacks.";
    homepage = "https://github.com/ionelmc/python-tblib";
    license = licenses.bsd2;
    maintainers = with maintainers; [ teh ];
  };
}