guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c4f2c7a41535d796752faff97cc01495ad40f812
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 17:02:30 2026 +0100
gnu: python-jsonpointer: Update to 3.1.1.
* gnu/packages/python-xyz.scm (python-jsonpointer): Update to 3.1.1.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: I47fe0cac230d8e268bf49b13975dc21cc45ba547
---
gnu/packages/python-xyz.scm | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index acd6ea3ded..feea5c93a5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25878,22 +25878,25 @@ conversion: Gamut A, B, and C.")
(define-public python-jsonpointer
(package
(name "python-jsonpointer")
- (version "3.0.0")
+ (version "3.1.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "jsonpointer" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/stefankoegl/python-json-pointer")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1vsrmwrbix3bnxf71g1zyil0pxkh33hq47xkqdhjslli42gp4b9b"))))
+ (base32 "1k7szx4k2h3zidw01i96fg9x5gnir5fdvlnpgb48xhg0si12ly1y"))))
(build-system pyproject-build-system)
(arguments (list #:test-backend #~'unittest))
(native-inputs
- (list python-setuptools
- python-wheel))
+ (list python-setuptools))
(home-page "https://github.com/stefankoegl/python-json-pointer")
(synopsis "Identify specific nodes in a JSON document")
- (description "@code{jsonpointer} allows you to access specific nodes
- by path in a JSON document (see RFC 6901).")
+ (description
+ "@code{jsonpointer} allows you to access specific nodes by path in a JSON
+document (see RFC 6901).")
(license license:bsd-3)))
(define-public python-jsonpatch