python310Packages.distributed: 2022.5.0 -> 2022.5.2

main
Fabian Affolter 2 years ago committed by Jonathan Ringer
parent 15b67040bb
commit 71d5ec64ff
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 30
      pkgs/development/python-modules/distributed/default.nix

@ -1,57 +1,55 @@
{ lib
, buildPythonPackage
, fetchPypi
, click
, cloudpickle
, dask
, fetchPypi
, jinja2
, locket
, msgpack
, packaging
, psutil
, pythonOlder
, pyyaml
, sortedcontainers
, tblib
, toolz
, tornado
, urllib3
, zict
, pyyaml
, mpi4py
, bokeh
, pythonOlder
}:
buildPythonPackage rec {
pname = "distributed";
version = "2022.5.0";
version = "2022.5.2";
format = "setuptools";
disabled = pythonOlder "3.7";
# get full repository need conftest.py to run tests
src = fetchPypi {
inherit pname version;
hash = "sha256-vI32FPtRwEaHVHjmR8AVOfX0GgCr89h+8savAJMtxQk=";
hash = "sha256-BEqsUfpk/Z4WsaLEMVIg0oHw5cwbBfTT03hSQm8efLY=";
};
propagatedBuildInputs = [
bokeh
click
cloudpickle
dask
mpi4py
jinja2
locket
msgpack
packaging
psutil
pyyaml
sortedcontainers
tblib
toolz
tornado
urllib3
zict
];
postPatch = ''
substituteInPlace requirements.txt \
--replace "dask == 2022.02.0" "dask"
'';
# when tested random tests would fail and not repeatably
# When tested random tests would fail and not repeatably
doCheck = false;
pythonImportsCheck = [

Loading…
Cancel
Save