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

40 lines
728 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";
2018-04-04 18:05:44 +00:00
version = "0.17.2";
2017-06-02 15:05:50 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-04-04 18:05:44 +00:00
sha256 = "27e470b8cfdd0516189e641b1213fceec0ddc4f37ead1fbce733d3381134fccd";
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 ];
};
}