guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit da39c8aa039f42e0e6f0553c0b7c060feed7c0c1
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Sun Jul 12 14:11:14 2026 +0200
gnu: python-resolvelib: Fix build by updating to 1.2.1-0.a0cb7c5.
* gnu/packages/python-xyz.scm (python-resolvelib): Update to
1.2.1-0.a0cb7c5.
Relates-to: guix/guix!9885
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e1d54ad714..7614bdd0df 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18344,17 +18344,22 @@ list format (also known as ASCII plist), written in
Cython.")
(define-public python-resolvelib
(package
(name "python-resolvelib")
- (version "1.1.0")
+ ;; Use latest commit, because last release, 1.2.1 is incompatible
+ ;; with python-packaging 26,
+ (properties '((commit . "a0cb7c50b78028f840b238d8e1c391e0546f2325")
+ (revision . "0")))
+ (version (git-version "1.2.1"
+ (assoc-ref properties 'revision)
+ (assoc-ref properties 'commit)))
(source
(origin
- ;; Tests are missing from the PyPI release.
(method git-fetch)
(uri (git-reference
(url "https://github.com/sarugaku/resolvelib")
- (commit version)))
+ (commit (assoc-ref properties 'commit))))
(file-name (git-file-name name version))
(sha256
- (base32 "0pw99897mm2y7pa2g35z0f7vcmgh42xglz5szbrvigczvwa605sh"))))
+ (base32 "1f00jlcv7fal4y6iyvqsycc6b5mkvxgc0jdddbkm1jcci1qy1yfl"))))
(build-system pyproject-build-system)
(native-inputs
(list python-packaging