pythonPackages.colorful: init at 0.5.4
Co-Authored-By: Chris <grkcharge@gmail.com>
This commit is contained in:
parent
1be9aa3a83
commit
7c4a19b2ee
27
pkgs/development/python-modules/colorful/default.nix
Normal file
27
pkgs/development/python-modules/colorful/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "colorful";
|
||||||
|
version = "0.5.4";
|
||||||
|
|
||||||
|
# No tests in the Pypi package.
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "timofurrer";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1fcz5v8b318a3dsdha4c874jsf3wmcw3f25bv2csixclyzacli98";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Terminal string styling done right, in Python.";
|
||||||
|
homepage = "http://github.com/timofurrer/colorful";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ kalbasit ];
|
||||||
|
};
|
||||||
|
}
|
@ -2084,6 +2084,8 @@ in {
|
|||||||
|
|
||||||
colorclass = callPackage ../development/python-modules/colorclass {};
|
colorclass = callPackage ../development/python-modules/colorclass {};
|
||||||
|
|
||||||
|
colorful = callPackage ../development/python-modules/colorful {};
|
||||||
|
|
||||||
colorlog = callPackage ../development/python-modules/colorlog { };
|
colorlog = callPackage ../development/python-modules/colorlog { };
|
||||||
|
|
||||||
colorspacious = callPackage ../development/python-modules/colorspacious { };
|
colorspacious = callPackage ../development/python-modules/colorspacious { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user