summary refs log tree commit diff
path: root/pkgs/development/python-modules/dask-image/default.nix
blob: 48a6a73af6766266ecf5eb14e36592b596e9e421 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, buildPythonPackage
, fetchPypi
, dask
, numpy, toolz # dask[array]
, scipy
, pims
, pytest
, scikitimage
}:

buildPythonPackage rec {
  version = "0.2.0";
  pname = "dask-image";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bece2ea347f963dc0168c7d5fdfd11e51b47d9c857d3bc56144d7c146964a23f";
  };

  checkInputs = [ pytest scikitimage ];
  propagatedBuildInputs = [ dask numpy toolz scipy pims ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/dask/dask-image";
    description = "Distributed image processing";
    license = licenses.bsdOriginal;
    maintainers = [ maintainers.costrouc ];
  };
}