{ lib , buildPythonPackage , fetchPypi , pytest , cloudpickle , numpy , toolz , dill , pandas , partd }: buildPythonPackage rec { pname = "dask"; version = "0.15.4"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "cb93b8260f5f854ccf26b52bdc700600a08e6b7527085c7b7d63c04238bab9ea"; }; checkInputs = [ pytest ]; propagatedBuildInputs = [ cloudpickle numpy toolz dill pandas partd ]; checkPhase = '' py.test dask ''; # URLError doCheck = false; meta = { description = "Minimal task scheduling abstraction"; homepage = http://github.com/ContinuumIO/dask/; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; }