Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / colorspacious / default.nix
blobd9a83e85ec35eb1408ad86958e379f6aefae7e5e
1 { lib, buildPythonPackage, fetchPypi, numpy
2 }:
4 buildPythonPackage rec {
5   pname = "colorspacious";
6   version = "1.1.2";
7   format = "setuptools";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "065n24zbm9ymy2gvf03vx5cggk1258vcjdaw8jn9v26arpl7542y";
12   };
14   propagatedBuildInputs = [
15     numpy
16   ];
18   meta = {
19     homepage = "https://github.com/njsmith/colorspacious";
20     description = "A powerful, accurate, and easy-to-use Python library for doing colorspace conversions ";
21     license = lib.licenses.mit;
22     maintainers = with lib.maintainers; [ tbenst ];
23   };