bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
28 lines
565 B
Nix
28 lines
565 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|