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

40 lines
727 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";
2017-07-17 08:53:24 +00:00
version = "0.15.1";
2017-06-02 15:05:50 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-07-17 08:53:24 +00:00
sha256 = "f62f19ab5958b13d0ee733db18218c28a9d452a3554446a3dfb5ac3d4a5f7e34";
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 = http://github.com/ContinuumIO/dask/;
2017-06-02 15:05:50 +00:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}