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 = "0.18.2";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "8fba559911788010ecedf58e540004d56d09f7829a1400dd72b74ffedafafabc";
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}