Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 572 B view raw
1{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k 2, numpy 3}: 4 5buildPythonPackage rec { 6 pname = "colorspacious"; 7 version = "1.1.2"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "065n24zbm9ymy2gvf03vx5cggk1258vcjdaw8jn9v26arpl7542y"; 12 }; 13 14 propagatedBuildInputs = [ 15 numpy 16 ]; 17 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 }; 24}