2018-04-03 04:47:57 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tblib";
|
2020-08-16 10:31:17 -07:00
|
|
|
version = "1.7.0";
|
2018-04-03 04:47:57 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 10:31:17 -07:00
|
|
|
sha256 = "059bd77306ea7b419d4f76016aef6d7027cc8a0785579b5aad198803435f882c";
|
2018-04-03 04:47:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Traceback fiddling library. Allows you to pickle tracebacks.";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ionelmc/python-tblib";
|
2018-04-03 04:47:57 -07:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ teh ];
|
|
|
|
};
|
|
|
|
}
|