Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 40 lines 710 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, cython 5, numpy 6, scipy 7, matplotlib 8, networkx 9, six 10, pillow 11, pywavelets 12, dask 13, cloudpickle 14, pytest 15}: 16 17buildPythonPackage rec { 18 pname = "scikit-image"; 19 version = "0.14.2"; 20 21 src = fetchPypi { 22 inherit pname version; 23 sha256 = "1afd0b84eefd77afd1071c5c1c402553d67be2d7db8950b32d6f773f25850c1f"; 24 }; 25 26 buildInputs = [ cython ]; 27 28 propagatedBuildInputs = [ numpy scipy matplotlib networkx six pillow pywavelets dask cloudpickle ]; 29 30 checkInputs = [ pytest ]; 31 32 # No tests in archive 33 doCheck = false; 34 35 meta = { 36 description = "Image processing routines for SciPy"; 37 homepage = http://scikit-image.org; 38 license = lib.licenses.bsd3; 39 }; 40}