pythonPackages.colormath: init at 3.0.0

This commit is contained in:
Jonathan Reeve 2020-01-09 18:37:54 -05:00 committed by Jon
parent 80223b04c8
commit e4134747f5
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ buildPythonPackage
, fetchFromGitHub
, networkx
, nose
, numpy
, lib
, pytest
}:
buildPythonPackage rec {
pname = "colormath";
version = "3.0.0";
src = fetchFromGitHub {
owner = "gtaylor";
rev = "3.0.0";
repo = "python-colormath";
sha256 = "1nqf5wy8ikx2g684khzvjc4iagkslmbsxxwilbv4jpaznr9lahdl";
};
propagatedBuildInputs = [ networkx numpy ];
checkInputs = [ nose ];
checkPhase = "nosetests";
meta = with lib; {
description = "Color math and conversion library";
homepage = "https://github.com/gtaylor/python-colormath";
license = licenses.bsd2;
maintainers = with maintainers; [ jonathanreeve ];
};
}

View file

@ -1806,6 +1806,8 @@ in {
colour = callPackage ../development/python-modules/colour {};
colormath = callPackage ../development/python-modules/colormath {};
configshell = callPackage ../development/python-modules/configshell { };
consonance = callPackage ../development/python-modules/consonance { };