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