gnu: python-joblib: Update to 1.5.1.

* gnu/packages/python-xyz.scm (python-joblib): Update to 1.5.1.
  [arguments] <test-flags>: Skip only one test.
  [propagated-inputs]: Remove python-psutil.
  [native-inputs]: Add python-pytest-asyncio.

Change-Id: I297d5c146cab585f108f72eb53826b417f71e264
This commit is contained in:
Sharlatan Hellseher 2025-07-15 23:48:57 +01:00
parent af5a6dd897
commit 1413a9c6df
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -8238,27 +8238,26 @@ bookmarks using a declarative input in the form of a markdown file.")
(define-public python-joblib (define-public python-joblib
(package (package
(name "python-joblib") (name "python-joblib")
(version "1.4.2") (version "1.5.1")
(source (origin (source
(method url-fetch) (origin
(uri (pypi-uri "joblib" version)) (method url-fetch)
(sha256 (uri (pypi-uri "joblib" version))
(base32 (sha256
"03izdcvc3fa355cclzgvzmjnfwylvblz9q091b9gndi6df0wb0i3")))) (base32 "0i5lfraj19fx0dqb5z5ahp1cxr0ymzcc7wm9686kvzir3wsnxy7l"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
(arguments (arguments
(list (list
#:test-flags ; disabled to avoid having to depend on ipython/jupyter #:test-flags
#~(list #~(list "--numprocesses" (number->string (parallel-job-count))
"--numprocesses" (number->string (parallel-job-count)) ;; Disabled to avoid having to depend on ipython/jupyter.
"-k" "-k" "not test_parallel_call_cached_function_defined_in_jupyter")))
(string-append
"not test_parallel_call_cached_function_defined_in_jupyter"
;; XXX This test times out.
" and not test_no_resource_tracker_on_import"))))
(native-inputs (native-inputs
(list python-pytest python-pytest-xdist python-setuptools python-wheel)) (list python-pytest
(propagated-inputs (list python-psutil)) python-pytest-asyncio
python-pytest-xdist
python-setuptools
python-wheel))
(home-page "https://joblib.readthedocs.io/") (home-page "https://joblib.readthedocs.io/")
(synopsis "Using Python functions as pipeline jobs") (synopsis "Using Python functions as pipeline jobs")
(description (description