1{ buildPythonPackage, fetchPypi, stdenv
2}:
3
4buildPythonPackage rec {
5 pname = "colorlover";
6 version = "0.2.1";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1clwvssrj007r07prfvkqnpjy3f77dlp584lj879x8mwl8f0japi";
11 };
12
13 # no tests included in distributed archive
14 doCheck = false;
15
16 meta = {
17 homepage = https://github.com/jackparmer/colorlover;
18 description = "Color scales in Python for humans";
19 license = stdenv.lib.licenses.mit;
20 maintainers = with stdenv.lib.maintainers; [ globin ];
21 };
22}