updated version and dependencies

This commit is contained in:
ft 2016-10-29 01:17:03 -07:00
parent fa4167c0a1
commit 2ad39a5670
1 changed files with 7 additions and 4 deletions

View File

@ -22523,16 +22523,19 @@ in {
scikitimage = buildPythonPackage rec { scikitimage = buildPythonPackage rec {
name = "scikit-image-${version}"; name = "scikit-image-${version}";
version = "0.11.3"; version = "0.12.3";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "mirror://pypi/s/scikit-image/${name}.tar.gz"; 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 = { meta = {
description = "Image processing routines for SciPy"; description = "Image processing routines for SciPy";