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/colored-traceback/default.nix

29 lines
654 B

{ lib
, buildPythonPackage
, fetchPypi
, pygments
}:
buildPythonPackage rec {
pname = "colored-traceback";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-bafOKx2oafa7VMkntBW5VyfEu22ahMRhXqd9mHKRGwU=";
};
buildInputs = [ pygments ];
# No setuptools tests for the package.
doCheck = false;
pythonImportsCheck = [ "colored_traceback" ];
meta = with lib; {
homepage = "https://github.com/staticshock/colored-traceback.py";
description = "Automatically color Python's uncaught exception tracebacks";
license = licenses.isc;
maintainers = with maintainers; [ pamplemousse ];
};
}