ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / colored-traceback / default.nix
blob35d1d5a896c24a45d359e56de68f761605c55176
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pygments
5 }:
7 buildPythonPackage rec {
8   pname = "colored-traceback";
9   version = "0.3.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-bafOKx2oafa7VMkntBW5VyfEu22ahMRhXqd9mHKRGwU=";
14   };
16   buildInputs = [ pygments ];
18   # No setuptools tests for the package.
19   doCheck = false;
21   pythonImportsCheck = [ "colored_traceback" ];
23   meta = with lib; {
24     homepage = "https://github.com/staticshock/colored-traceback.py";
25     description = "Automatically color Python's uncaught exception tracebacks";
26     license = licenses.isc;
27     maintainers = with maintainers; [ pamplemousse ];
28   };