python310Packages.joblib 1.2.0 -> 1.3.1 https://repology.org/project/python:joblib/versions attrpath: python310Packages.joblib 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/lnh4wx3zdv2rfg9jnzwby9qk3zw89xxx-packages.json.drv building '/nix/store/lnh4wx3zdv2rfg9jnzwby9qk3zw89xxx-packages.json.drv'... Going to be running update for following packages: - python3.10-joblib-1.2.0 Press Enter key to continue... Running update for: - python3.10-joblib-1.2.0: UPDATING ... - python3.10-joblib-1.2.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/joblib/default.nix b/pkgs/development/python-modules/joblib/default.nix index 7317ee8fc14..d16162f7e4d 100644 --- a/pkgs/development/python-modules/joblib/default.nix +++ b/pkgs/development/python-modules/joblib/default.nix @@ -15,12 +15,12 @@ buildPythonPackage rec { pname = "joblib"; - version = "1.2.0"; + version = "1.3.1"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-4c7kp55K8iiBFk8hjUMR9gB0GX+3B+CC6AO2H20TcBg="; + hash = "sha256-H5N5Bt9lMpupgBPclpL+IqTF5KZIES3lAFCLGKIbQeM="; }; nativeCheckInputs = [ sphinx numpydoc pytestCheckHook psutil ]; No auto update branch exists Old version 1.2.0" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , stdenv # build-system , setuptools # propagates (optional, but unspecified) # https://github.com/joblib/joblib#dependencies , lz4 , psutil # tests , pytestCheckHook , threadpoolctl }: buildPythonPackage rec { pname = "joblib"; version = "1.3.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-H5N5Bt9lMpupgBPclpL+IqTF5KZIES3lAFCLGKIbQeM="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ lz4 psutil ]; nativeCheckInputs = [ pytestCheckHook threadpoolctl ]; pytestFlagsArray = [ "joblib/test" ]; disabledTests = [ "test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57 "test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests "test_nested_parallel_warnings" # tests is flaky under load ] ++ lib.optionals stdenv.isDarwin [ "test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin. ]; meta = with lib; { changelog = "https://github.com/joblib/joblib/releases/tag/${version}"; description = "Lightweight pipelining: using Python functions as pipeline jobs"; homepage = "https://joblib.readthedocs.io/"; license = licenses.bsd3; maintainers = with maintainers; [ ]; }; }