Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / colorlover / default.nix
blob1fda9111e6fa433f6487c059e02cf28cfcaa0db7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "colorlover";
8   version = "0.3.0";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "b8fb7246ab46e1f5e6715649453c1762e245a515de5ff2d2b4aab7a6e67fa4e2";
14   };
16   # no tests included in distributed archive
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/jackparmer/colorlover";
21     description = "Color scales in Python for humans";
22     license = licenses.mit;
23     maintainers = with maintainers; [ ];
24   };