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

19 lines
479 B
Nix
Raw Normal View History

2018-04-03 11:47:57 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "tblib";
version = "1.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "02iahfkfa927hb4jq2bak36ldihwapzacfiq5lyxg8llwn98a1yi";
};
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 ];
};
}