1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "colorclass"; 5 version = "2.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b"; 10 }; 11 12 # No tests in archive 13 doCheck = false; 14 15 meta = with lib; { 16 homepage = "https://github.com/Robpol86/colorclass"; 17 license = licenses.mit; 18 description = "Automatic support for console colors"; 19 }; 20}