9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/v${version}";
20 hash = "sha256-8rHJIsHiyfjmjlGiEyrzvEwKgi1kP4Njm731mlFDMIU=";
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "colorful" ];
28 description = "Library for terminal string styling";
29 homepage = "https://github.com/timofurrer/colorful";
30 changelog = "https://github.com/timofurrer/colorful/releases/tag/v${version}";
31 license = licenses.mit;
32 maintainers = with maintainers; [ kalbasit ];