summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-12 16:14:30 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:48 +0100
commit6a5dd284a63edfa1f19392d0d29b934d560556b2 (patch)
tree02ad3b3a98b6e75ad9c404df9f876c58bf46ac24 /gnu/packages/python-xyz.scm
parent6167484ea30c8620cfd96b97f2aeda017606a876 (diff)
gnu: python-jsonpointer: Update to 3.0.0.
* gnu/packages/python-xyz.scm (python-jsonpointer): Update to 3.0.0. [arguments] <test-backend>: Set to 'unittest. Change-Id: I2fdc9c98ac3d64ecd45771636b18304213f8ea62
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm20
1 files changed, 11 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b7cddfa35e..49e22fa464 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26826,21 +26826,23 @@ conversion: Gamut A, B, and C.")
(define-public python-jsonpointer
(package
(name "python-jsonpointer")
- (version "1.14")
+ (version "3.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "jsonpointer" version))
(sha256
- (base32
- "0kdckqca8i2ly87mxwn0ggwfzig4xvadbvcanfvk3is56n1az0f6"))))
- (build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
- (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
+ (base32 "1vsrmwrbix3bnxf71g1zyil0pxkh33hq47xkqdhjslli42gp4b9b"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:test-backend #~'unittest))
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
+ (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).")
- (license license:bsd-3)))
+ (license license:bsd-3)))
(define-public python-jsonpatch
(package