summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-07-12 14:11:14 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:23 +0100
commit79f1d406cc3c510d29165f43171924c7ef6847f9 (patch)
tree546213cb2a4483cdc28af208210c70bda7517a00 /gnu/packages/python-xyz.scm
parentb80ce11cad3bead87119c05f5814f8e509898d27 (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm13
1 files changed, 9 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 95610a44bdc..ea2d1aad0fe 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18462,17 +18462,22 @@ list format (also known as ASCII plist), written in Cython.")
18462(define-public python-resolvelib 18462(define-public python-resolvelib
18463 (package 18463 (package
18464 (name "python-resolvelib") 18464 (name "python-resolvelib")
18465 (version "1.1.0") 18465 ;; Use latest commit, because last release, 1.2.1 is incompatible
18466 ;; with python-packaging 26,
18467 (properties '((commit . "a0cb7c50b78028f840b238d8e1c391e0546f2325")
18468 (revision . "0")))
18469 (version (git-version "1.2.1"
18470 (assoc-ref properties 'revision)
18471 (assoc-ref properties 'commit)))
18466 (source 18472 (source
18467 (origin 18473 (origin
18468 ;; Tests are missing from the PyPI release.
18469 (method git-fetch) 18474 (method git-fetch)
18470 (uri (git-reference 18475 (uri (git-reference
18471 (url "https://github.com/sarugaku/resolvelib") 18476 (url "https://github.com/sarugaku/resolvelib")
18472 (commit version))) 18477 (commit (assoc-ref properties 'commit))))
18473 (file-name (git-file-name name version)) 18478 (file-name (git-file-name name version))
18474 (sha256 18479 (sha256
18475 (base32 "0pw99897mm2y7pa2g35z0f7vcmgh42xglz5szbrvigczvwa605sh")))) 18480 (base32 "1f00jlcv7fal4y6iyvqsycc6b5mkvxgc0jdddbkm1jcci1qy1yfl"))))
18476 (build-system pyproject-build-system) 18481 (build-system pyproject-build-system)
18477 (native-inputs 18482 (native-inputs
18478 (list python-packaging 18483 (list python-packaging