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

19 lines
491 B
Nix
Raw Normal View History

2018-04-03 13:47:57 +02:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "tblib";
2019-10-24 08:47:50 +02:00
version = "1.5.0";
2018-04-03 13:47:57 +02:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:50 +02:00
sha256 = "1735ff8fd6217446384b5afabead3b142cf1a52d242cfe6cab4240029d6d131a";
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;
license = licenses.bsd2;
maintainers = with maintainers; [ teh ];
};
}