Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at master 488 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 colorama, 6}: 7 8buildPythonPackage rec { 9 pname = "crayons"; 10 version = "0.4.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "bd33b7547800f2cfbd26b38431f9e64b487a7de74a947b0fafc89b45a601813f"; 16 }; 17 18 propagatedBuildInputs = [ colorama ]; 19 20 meta = with lib; { 21 description = "TextUI colors for Python"; 22 homepage = "https://github.com/kennethreitz/crayons"; 23 license = licenses.mit; 24 }; 25}