Merge pull request #20104 from teh/distributed-update
Distributed update
This commit is contained in:
commit
369ef8d977
@ -5394,21 +5394,57 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
heapdict = buildPythonPackage rec {
|
||||||
|
name = "HeapDict-${version}";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "mirror://pypi/H/HeapDict/${name}.tar.gz";
|
||||||
|
sha256 = "0nhvxyjq6fp6zd7jzmk5x4fg6xhakqx9lhkp5yadzkqn0rlf7ja0";
|
||||||
|
};
|
||||||
|
doCheck = !isPy3k;
|
||||||
|
meta = {
|
||||||
|
description = "a heap with decrease-key and increase-key operations.";
|
||||||
|
homepage = http://stutzbachenterprises.com;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ teh ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
zict = buildPythonPackage rec {
|
||||||
|
|
||||||
|
name = "zict-${version}";
|
||||||
|
version = "0.0.3";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "mirror://pypi/z/zict/${name}.tar.gz";
|
||||||
|
sha256 = "1xsrlzrih0qmxvxqhk2c5vhzxirf509fppzdfyardl50jpsllni6";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ heapdict ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Mutable mapping tools.";
|
||||||
|
homepage = https://github.com/dask/zict;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ teh ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
distributed = buildPythonPackage rec {
|
distributed = buildPythonPackage rec {
|
||||||
|
|
||||||
name = "distributed-${version}";
|
name = "distributed-${version}";
|
||||||
version = "1.10.0";
|
version = "1.13.3";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/d/distributed/${name}.tar.gz";
|
url = "mirror://pypi/d/distributed/${name}.tar.gz";
|
||||||
sha256 = "11bp2rs52fhcqlgyrlh3cf31ck07mys38mrkf98vjl380lyjj357";
|
sha256 = "0nka6hqz986j1fhvfmxffgvmnxh66giq9a3ml58jsaf0riq9mjrc";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ pytest docutils ];
|
buildInputs = with self; [ pytest docutils ];
|
||||||
propagatedBuildInputs = with self; [
|
propagatedBuildInputs = with self; [
|
||||||
dask six boto3 s3fs tblib locket msgpack click cloudpickle tornado
|
dask six boto3 s3fs tblib locket msgpack click cloudpickle tornado
|
||||||
psutil botocore
|
psutil botocore zict lz4
|
||||||
] ++ (if !isPy3k then [ singledispatch ] else []);
|
] ++ (if !isPy3k then [ singledispatch ] else []);
|
||||||
|
|
||||||
# py.test not picking up local config file, even when running
|
# py.test not picking up local config file, even when running
|
||||||
|
Loading…
x
Reference in New Issue
Block a user