1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 name = "${pname}-${version}"; 5 pname = "colorama"; 6 version = "0.3.9"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "1wd1szk0z3073ghx26ynw43gnc140ibln1safgsis6s6z3s25ss8"; 11 }; 12 13 # No tests in archive 14 doCheck = false; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/tartley/colorama; 18 license = licenses.bsd3; 19 description = "Cross-platform colored terminal text"; 20 }; 21} 22