python310Packages.distributed 0 -> 1 attrpath: python310Packages.distributed Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/45pg212qhdqhv5lmjw8gsr5jqybh6ckc-packages.json.drv building '/nix/store/45pg212qhdqhv5lmjw8gsr5jqybh6ckc-packages.json.drv'... Going to be running update for following packages: - python3.10-distributed-2022.10.2 Press Enter key to continue... Running update for: - python3.10-distributed-2022.10.2: UPDATING ... - python3.10-distributed-2022.10.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/distributed/default.nix b/pkgs/development/python-modules/distributed/default.nix index 6b7f535e515..ad069f58927 100644 --- a/pkgs/development/python-modules/distributed/default.nix +++ b/pkgs/development/python-modules/distributed/default.nix @@ -21,14 +21,14 @@ buildPythonPackage rec { pname = "distributed"; - version = "2022.10.2"; + version = "2022.12.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-U/Clv276uaWrM0XNkT9tPz1OpETuLtvqMxx/75b9Z9A="; + hash = "sha256-h/7c+/ISbRTDhlyORFxB7Mq9Kwfq/4dSivKv2eIM7Ww="; }; postPatch = '' No auto update branch exists Old version 2022.10.2" not present in staging derivation file with contents: { lib , buildPythonPackage , click , cloudpickle , dask , fetchPypi , jinja2 , locket , msgpack , packaging , psutil , pythonOlder , pyyaml , sortedcontainers , tblib , toolz , tornado , urllib3 , zict }: buildPythonPackage rec { pname = "distributed"; version = "2022.12.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-h/7c+/ISbRTDhlyORFxB7Mq9Kwfq/4dSivKv2eIM7Ww="; }; 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 ]; }; }