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-12-19 20:31:23 +01:00
version = "1.6.0";
2018-04-03 13:47:57 +02:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:23 +01:00
sha256 = "229bee3754cb5d98b4837dd5c4405e80cfab57cb9f93220410ad367f8b352344";
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 ];
};
}