python3packages.colorspacious: init at 1.1.2

This commit is contained in:
tbenst
2019-10-31 13:51:06 -07:00
committed by Jon
parent 51eff7ac8d
commit f82997f899
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
, numpy
}:
buildPythonPackage rec {
pname = "colorspacious";
version = "1.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "065n24zbm9ymy2gvf03vx5cggk1258vcjdaw8jn9v26arpl7542y";
};
propagatedBuildInputs = [
numpy
];
meta = {
homepage = "https://github.com/njsmith/colorspacious";
description = "A powerful, accurate, and easy-to-use Python library for doing colorspace conversions ";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tbenst ];
};
}