1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 numpy,
6}:
7
8buildPythonPackage rec {
9 pname = "colorspacious";
10 version = "1.1.2";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "065n24zbm9ymy2gvf03vx5cggk1258vcjdaw8jn9v26arpl7542y";
16 };
17
18 propagatedBuildInputs = [ numpy ];
19
20 meta = {
21 homepage = "https://github.com/njsmith/colorspacious";
22 description = "Powerful, accurate, and easy-to-use Python library for doing colorspace conversions";
23 license = lib.licenses.mit;
24 maintainers = with lib.maintainers; [ tbenst ];
25 };
26}