1{ buildPythonPackage, fetchPypi, stdenv
2}:
3
4buildPythonPackage rec {
5 pname = "colorlover";
6 version = "0.3.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "b8fb7246ab46e1f5e6715649453c1762e245a515de5ff2d2b4aab7a6e67fa4e2";
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}