1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5, cloudpickle
6, numpy
7, toolz
8, dill
9, pandas
10, partd
11}:
12
13buildPythonPackage rec {
14 pname = "dask";
15 version = "1.1.1";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "2e70135d6856805699b52774d8e0cec41beda92bdfc9f9c776962b4bfb34822c";
20 };
21
22 checkInputs = [ pytest ];
23 propagatedBuildInputs = [ cloudpickle numpy toolz dill pandas partd ];
24
25 checkPhase = ''
26 py.test dask
27 '';
28
29 # URLError
30 doCheck = false;
31
32 meta = {
33 description = "Minimal task scheduling abstraction";
34 homepage = https://github.com/ContinuumIO/dask/;
35 license = lib.licenses.bsd3;
36 maintainers = with lib.maintainers; [ fridh ];
37 };
38}