19 lines
481 B
Nix
Raw Normal View History

2018-04-03 13:47:57 +02:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "tblib";
2020-07-30 01:17:24 +00:00
version = "1.7.0";
2018-04-03 13:47:57 +02:00
src = fetchPypi {
inherit pname version;
2020-07-30 01:17:24 +00:00
sha256 = "0b48bx1h720rmmd9nmw50y5cq9vhdppnl0bn9yfl2yza0rrxg6q5";
2018-04-03 13:47:57 +02:00
};
meta = with stdenv.lib; {
description = "Traceback fiddling library. Allows you to pickle tracebacks.";
homepage = "https://github.com/ionelmc/python-tblib";
2018-04-03 13:47:57 +02:00
license = licenses.bsd2;
maintainers = with maintainers; [ teh ];
};
}