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";
2018-04-04 20:17:26 +02:00
version = "1.3.2";
2018-04-03 13:47:57 +02:00
src = fetchPypi {
inherit pname version;
2018-04-04 20:17:26 +02:00
sha256 = "436e4200e63d92316551179dc540906652878df4ff39b43db30fcf6400444fe7";
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 ];
};
}