Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 466 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "colorama"; 5 version = "0.4.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "05eed71e2e327246ad6b38c540c4a3117230b19679b875190486ddd2d721422d"; 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