2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
18 lines
470 B
Nix
18 lines
470 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tblib";
|
|
version = "2.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-pt8w8nLAi/i+ZuB3X62GIAXZUKa4RJuU98eIcx1w7Nc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|