1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

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 ];
};
}

View file

@ -1731,6 +1731,8 @@ in {
colorlog = callPackage ../development/python-modules/colorlog { };
colorspacious = callPackage ../development/python-modules/colorspacious { };
colour = callPackage ../development/python-modules/colour {};
configshell = callPackage ../development/python-modules/configshell { };