1{ stdenv, fetchPypi, buildPythonPackage, colorama }: 2 3buildPythonPackage rec { 4 pname = "crayons"; 5 version = "0.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "17c0v0dkk8sn8kyyy2w7myxq9981glrbczh6h8sdcr750lb6j5sy"; 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}