guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f0c905db304317de149b4029a5f98a89d69ffe8b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 10:14:13 2026 +0100
gnu: python-joblib: Update to 1.5.3.
* gnu/packages/python-xyz.scm (python-joblib): Update to 1.5.3.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: I253a99f84c3289aa3d05353e35d616b01e2399db
---
gnu/packages/python-xyz.scm | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cbbb409b67..32ea03f34d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10200,16 +10200,20 @@ bookmarks using a declarative input in the form of a
markdown file.")
(define-public python-joblib
(package
(name "python-joblib")
- (version "1.5.2")
+ (version "1.5.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "joblib" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/joblib/joblib")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0mbvch9pzadf0vrm666381ic0ryy5zsv5abxak506bsb0lwmraiz"))))
+ (base32 "0vblgi0mb1jcwgf8f3rslw82g28fjl6n52mwgsm7p7y2nrixdrjb"))))
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 1319 passed, 103 skipped, 3 xpassed, 563 warnings
#:test-flags
#~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))
;; Disabled to avoid having to depend on ipython/jupyter.
@@ -10218,8 +10222,7 @@ bookmarks using a declarative input in the form of a
markdown file.")
(list python-pytest
python-pytest-asyncio
python-pytest-xdist
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://joblib.readthedocs.io/")
(synopsis "Using Python functions as pipeline jobs")
(description