mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.colormath: init at 3.0.0
This commit is contained in:
parent
80223b04c8
commit
e4134747f5
2 changed files with 34 additions and 0 deletions
32
pkgs/development/python-modules/colormath/default.nix
Normal file
32
pkgs/development/python-modules/colormath/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue