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

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

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

  # no tests included in distributed archive
  doCheck = false;

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