pythonPackages.colorclass: Move to own file
This commit is contained in:
parent
cbc5202c1b
commit
ece5086d0e
20
pkgs/development/python-modules/colorclass/default.nix
Normal file
20
pkgs/development/python-modules/colorclass/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "colorclass";
|
||||
version = "2.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b";
|
||||
};
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/Robpol86/colorclass;
|
||||
license = licenses.mit;
|
||||
description = "Automatic support for console colors";
|
||||
};
|
||||
}
|
@ -1119,25 +1119,7 @@ in {
|
||||
|
||||
circus = callPackage ../development/python-modules/circus {};
|
||||
|
||||
colorclass = buildPythonPackage rec {
|
||||
pname = "colorclass";
|
||||
version = "2.2.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b";
|
||||
};
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/Robpol86/colorclass";
|
||||
license = licenses.mit;
|
||||
description = "Automatic support for console colors";
|
||||
};
|
||||
};
|
||||
colorclass = callPackage ../development/python-modules/colorclass {};
|
||||
|
||||
colorlog = callPackage ../development/python-modules/colorlog { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user