python311Packages.ipyparallel 0 -> 1 attrpath: python311Packages.ipyparallel 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/n7qsrqchq5vl8fclk08674r8xmsb249q-packages.json.drv building '/nix/store/n7qsrqchq5vl8fclk08674r8xmsb249q-packages.json.drv'... Going to be running update for following packages: - python3.11-ipyparallel-8.6.1 Press Enter key to continue... Running update for: - python3.11-ipyparallel-8.6.1: UPDATING ... - python3.11-ipyparallel-8.6.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ipyparallel/default.nix b/pkgs/development/python-modules/ipyparallel/default.nix index 509b70b7fd3a..b527195ad915 100644 --- a/pkgs/development/python-modules/ipyparallel/default.nix +++ b/pkgs/development/python-modules/ipyparallel/default.nix @@ -18,14 +18,14 @@ buildPythonPackage rec { pname = "ipyparallel"; - version = "8.6.1"; + version = "8.7.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-o5ql75VgFwvw6a/typ/wReG5wYMsSTAzd+3Mkc6p+3c="; + hash = "sha256-QDwJca5Wwrajn/6PNfMcf9FwzhJ5JGKUWc3X96C058M="; }; # We do not need the jupyterlab build dependency, because we do not need to No auto update branch exists Old version 8.6.1" not present in staging derivation file with contents: { lib , buildPythonPackage , decorator , entrypoints , fetchPypi , hatchling , ipykernel , ipython , jupyter-client , psutil , python-dateutil , pythonOlder , pyzmq , tornado , tqdm , traitlets }: buildPythonPackage rec { pname = "ipyparallel"; version = "8.7.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-QDwJca5Wwrajn/6PNfMcf9FwzhJ5JGKUWc3X96C058M="; }; # We do not need the jupyterlab build dependency, because we do not need to # build any JS components; these are present already in the PyPI artifact. # postPatch = '' substituteInPlace pyproject.toml \ --replace '"jupyterlab>=3.0.0,==3.*",' "" ''; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ decorator entrypoints ipykernel ipython jupyter-client psutil python-dateutil pyzmq tornado tqdm traitlets ]; # Requires access to cluster doCheck = false; pythonImportsCheck = [ "ipyparallel" ]; meta = with lib;{ description = "Interactive Parallel Computing with IPython"; homepage = "https://ipyparallel.readthedocs.io/"; license = licenses.bsd3; maintainers = with maintainers; [ fridh ]; }; }