Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 15 lines 283 B view raw
1{ buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "ansi"; 5 version = "0.1.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "06y6470bzvlqys3zi2vc68rmk9n05v1ibral14gbfpgfa8fzy7pg"; 10 }; 11 12 checkPhase = '' 13 python -c "import ansi.color" 14 ''; 15}