nixpkgs/pkgs/development/python-modules/dask/default.nix

39 lines
695 B
Nix
Raw Normal View History

2017-06-02 15:05:50 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, cloudpickle
, numpy
, toolz
, dill
, pandas
, partd
}:
buildPythonPackage rec {
pname = "dask";
2019-05-30 06:47:55 +00:00
version = "1.2.2";
2017-06-02 15:05:50 +00:00
src = fetchPypi {
inherit pname version;
2019-05-30 06:47:55 +00:00
sha256 = "5e7876bae2a01b355d1969b73aeafa23310febd8c353163910b73e93dc7e492c";
2017-06-02 15:05:50 +00:00
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ cloudpickle numpy toolz dill pandas partd ];
checkPhase = ''
py.test dask
'';
# URLError
doCheck = false;
meta = {
description = "Minimal task scheduling abstraction";
homepage = https://github.com/ContinuumIO/dask/;
2017-06-02 15:05:50 +00:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}