Merge pull request #19964 from f--t/master

scikit-image: updated version and dependencies
This commit is contained in:
Frederik Rietdijk 2016-10-29 14:12:24 +02:00 committed by GitHub
commit 8bb63d11e6

View File

@ -22523,16 +22523,19 @@ in {
scikitimage = buildPythonPackage rec {
name = "scikit-image-${version}";
version = "0.11.3";
version = "0.12.3";
src = pkgs.fetchurl {
url = "mirror://pypi/s/scikit-image/${name}.tar.gz";
sha256 = "768e568f3299966c294b7eb8cd114fc648f7bfaef422ee9cc750dd8d9d09e44b";
sha256 = "1iypjww5hk46i9vzg2zlfc9w4vdw029cfyakkkl02isj1qpiknl2";
};
buildInputs = with self; [ cython nose numpy six ];
buildInputs = with self; [ cython dask nose numpy scipy six ];
propagatedBuildInputs = with self; [ pillow matplotlib networkx scipy ];
propagatedBuildInputs = with self; [ pillow matplotlib networkx scipy six numpy ];
# the test fails because the loader cannot create test objects!
doCheck = false;
meta = {
description = "Image processing routines for SciPy";