Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 19 lines 464 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, colorama }: 2 3buildPythonPackage rec { 4 pname = "crayons"; 5 version = "0.3.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "dcb85b87aa03bb65bd3a073d012796b024cabeb086033e616759e2abb769440b"; 10 }; 11 12 propagatedBuildInputs = [ colorama ]; 13 14 meta = with stdenv.lib; { 15 description = "TextUI colors for Python"; 16 homepage = "https://github.com/kennethreitz/crayons"; 17 license = licenses.mit; 18 }; 19}