0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
71 lines
1.2 KiB
Nix
71 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, click
|
|
, cloudpickle
|
|
, dask
|
|
, fetchPypi
|
|
, jinja2
|
|
, locket
|
|
, msgpack
|
|
, packaging
|
|
, psutil
|
|
, pythonOlder
|
|
, pyyaml
|
|
, sortedcontainers
|
|
, tblib
|
|
, toolz
|
|
, tornado
|
|
, urllib3
|
|
, zict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "distributed";
|
|
version = "2023.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-xV3HQmmDtSIn+DM3Rcoyp3dqY9qSjB+8Con6+o6a/y0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt \
|
|
--replace "tornado >= 6.0.3, <6.2" "tornado >= 6.0.3"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
cloudpickle
|
|
dask
|
|
jinja2
|
|
locket
|
|
msgpack
|
|
packaging
|
|
psutil
|
|
pyyaml
|
|
sortedcontainers
|
|
tblib
|
|
toolz
|
|
tornado
|
|
urllib3
|
|
zict
|
|
];
|
|
|
|
# When tested random tests would fail and not repeatably
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"distributed"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Distributed computation in Python";
|
|
homepage = "https://distributed.readthedocs.io/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.x86; # fails on aarch64
|
|
maintainers = with maintainers; [ teh costrouc ];
|
|
};
|
|
}
|