ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / colormath / default.nix
blob7f9f9f1a9ce7447bb43473f70467a18134444cac
1 { buildPythonPackage
2 , fetchFromGitHub
3 , networkx
4 , nose
5 , numpy
6 , lib
7 }:
9 buildPythonPackage rec {
10   pname = "colormath";
11   # Switch to unstable which fixes an deprecation issue with newer numpy
12   # versions, should be included in versions > 3.0
13   # https://github.com/gtaylor/python-colormath/issues/104
14   version = "unstable-2021-04-17";
16   src = fetchFromGitHub {
17     owner = "gtaylor";
18     repo = "python-colormath";
19     rev = "4a076831fd5136f685aa7143db81eba27b2cd19a";
20     sha256 = "sha256-eACVPIQFgiGiVmQ/PjUxP/UH/hBOsCywz5PlgpA4dk4=";
21   };
23   propagatedBuildInputs = [ networkx numpy ];
25   checkInputs = [ nose ];
27   checkPhase = "nosetests";
29   pythonImportsCheck = [ "colormath" ];
31   meta = with lib; {
32     description = "Color math and conversion library";
33     homepage = "https://github.com/gtaylor/python-colormath";
34     license = licenses.bsd2;
35     maintainers = with maintainers; [ jonathanreeve ];
36   };