nixpkgs/pkgs/development/python-modules/tblib/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
564 B
Nix
Raw Normal View History

2023-12-02 23:03:07 +00:00
{ lib
, buildPythonPackage
, fetchPypi
# build-system
, setuptools
}:
2018-04-03 11:47:57 +00:00
buildPythonPackage rec {
pname = "tblib";
2023-12-02 23:03:07 +00:00
version = "3.0.0";
pyproject = true;
2018-04-03 11:47:57 +00:00
src = fetchPypi {
inherit pname version;
2023-12-02 23:03:07 +00:00
hash = "sha256-k2InkKCingTwNGRY+s4eFE3E0y9JNxTGw9/4Kkrbd+Y=";
2018-04-03 11:47:57 +00:00
};
2023-12-02 23:03:07 +00:00
nativeBuildInputs = [
setuptools
];
meta = with lib; {
2018-04-03 11:47:57 +00:00
description = "Traceback fiddling library. Allows you to pickle tracebacks.";
homepage = "https://github.com/ionelmc/python-tblib";
2018-04-03 11:47:57 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ teh ];
};
}