Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / colored-traceback / default.nix
bloba2cdfea30b2c334c22f5a40c03373c5093c83f7e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pygments
5 }:
7 buildPythonPackage rec {
8   pname = "colored-traceback";
9   version = "0.3.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-bafOKx2oafa7VMkntBW5VyfEu22ahMRhXqd9mHKRGwU=";
15   };
17   buildInputs = [ pygments ];
19   # No setuptools tests for the package.
20   doCheck = false;
22   pythonImportsCheck = [ "colored_traceback" ];
24   meta = with lib; {
25     homepage = "https://github.com/staticshock/colored-traceback.py";
26     description = "Automatically color Python's uncaught exception tracebacks";
27     license = licenses.isc;
28     maintainers = with maintainers; [ pamplemousse ];
29   };