python.pkgs.dask: 0.14.1 -> 0.14.3
This commit is contained in:
parent
2957786355
commit
c7867b8b34
39
pkgs/development/python-modules/dask/default.nix
Normal file
39
pkgs/development/python-modules/dask/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytest
|
||||
, cloudpickle
|
||||
, numpy
|
||||
, toolz
|
||||
, dill
|
||||
, pandas
|
||||
, partd
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dask";
|
||||
version = "0.14.3";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "9bf007f9cedc08f73089f0621ff65ec0882fc0a834acef56830dfd2872908211";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -5354,33 +5354,7 @@ in {
|
||||
};
|
||||
});
|
||||
|
||||
dask = buildPythonPackage rec {
|
||||
pname = "dask";
|
||||
name = "${pname}-${version}";
|
||||
version = "0.14.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "46c8ef9aa41a5755f2194b535bff7fdef1343d3993ab294b198caf95155ec94e";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
propagatedBuildInputs = with self; [ 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 = licenses.bsd3;
|
||||
maintainers = with maintainers; [ fridh ];
|
||||
};
|
||||
};
|
||||
dask = callPackage ../development/python-modules/dask { };
|
||||
|
||||
datrie = buildPythonPackage rec {
|
||||
name = "datrie";
|
||||
|
Loading…
Reference in New Issue
Block a user