diff --git a/pkgs/development/python-modules/distributed/default.nix b/pkgs/development/python-modules/distributed/default.nix index 426ee1107909..646899d36cf8 100644 --- a/pkgs/development/python-modules/distributed/default.nix +++ b/pkgs/development/python-modules/distributed/default.nix @@ -21,16 +21,21 @@ buildPythonPackage rec { pname = "distributed"; - version = "2022.5.2"; + version = "2022.7.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-BEqsUfpk/Z4WsaLEMVIg0oHw5cwbBfTT03hSQm8efLY="; + hash = "sha256-5oq6i+PiDl0RIKvKyEGQn/GAIXCKhBKvpY/xU8T6sKw="; }; + postPatch = '' + substituteInPlace requirements.txt \ + --replace "tornado >= 6.0.3, <6.2" "tornado >= 6.0.3" + ''; + propagatedBuildInputs = [ click cloudpickle