summary refs log tree commit diff
path: root/pkgs/development/python-modules/colorlover/default.nix
blob: d255ff0992f54572545e450a2f11c93e76fca026 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "colorlover";
  version = "0.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b8fb7246ab46e1f5e6715649453c1762e245a515de5ff2d2b4aab7a6e67fa4e2";
  };

  # no tests included in distributed archive
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/jackparmer/colorlover";
    description = "Color scales in Python for humans";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}