My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/traceback2/default.nix

28 lines
547 B

{ lib
, buildPythonPackage
, fetchPypi
, pbr
, linecache2
}:
buildPythonPackage rec {
version = "1.4.0";
pname = "traceback2";
src = fetchPypi {
inherit pname version;
sha256 = "0c1h3jas1jp1fdbn9z2mrgn3jj0hw1x3yhnkxp7jw34q15xcdb05";
};
propagatedBuildInputs = [ pbr linecache2 ];
# circular dependencies for tests
doCheck = false;
meta = with lib; {
description = "A backport of traceback to older supported Pythons";
homepage = "https://pypi.python.org/pypi/traceback2/";
license = licenses.psfl;
};
}