nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pythonPackages.colorful: init at 0.5.4

Co-Authored-By: Chris <grkcharge@gmail.com>

authored by

Wael Nasreddine
Chris
and committed by
Wael Nasreddine
7c4a19b2 1be9aa3a

+29
+27
pkgs/development/python-modules/colorful/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "colorful"; 9 + version = "0.5.4"; 10 + 11 + # No tests in the Pypi package. 12 + src = fetchFromGitHub { 13 + owner = "timofurrer"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + sha256 = "1fcz5v8b318a3dsdha4c874jsf3wmcw3f25bv2csixclyzacli98"; 17 + }; 18 + 19 + checkInputs = [ pytestCheckHook ]; 20 + 21 + meta = with lib; { 22 + description = "Terminal string styling done right, in Python."; 23 + homepage = "http://github.com/timofurrer/colorful"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ kalbasit ]; 26 + }; 27 + }
+2
pkgs/top-level/python-packages.nix
··· 2084 2084 2085 2085 colorclass = callPackage ../development/python-modules/colorclass {}; 2086 2086 2087 + colorful = callPackage ../development/python-modules/colorful {}; 2088 + 2087 2089 colorlog = callPackage ../development/python-modules/colorlog { }; 2088 2090 2089 2091 colorspacious = callPackage ../development/python-modules/colorspacious { };