Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 466 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "colorama"; 5 version = "0.4.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "e96da0d330793e2cb9485e9ddfd918d456036c7149416295932478192f4436a1"; 10 }; 11 12 # No tests in archive 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 homepage = https://github.com/tartley/colorama; 17 license = licenses.bsd3; 18 description = "Cross-platform colored terminal text"; 19 }; 20} 21