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
This commit is contained in:
Sharlatan Hellseher 2025-07-12 16:14:30 +01:00
parent ca0f6d866f
commit 2b538d46e2
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -26850,21 +26850,23 @@ conversion: Gamut A, B, and C.")
(define-public python-jsonpointer (define-public python-jsonpointer
(package (package
(name "python-jsonpointer") (name "python-jsonpointer")
(version "1.14") (version "3.0.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "jsonpointer" version)) (uri (pypi-uri "jsonpointer" version))
(sha256 (sha256
(base32 (base32 "1vsrmwrbix3bnxf71g1zyil0pxkh33hq47xkqdhjslli42gp4b9b"))))
"0kdckqca8i2ly87mxwn0ggwfzig4xvadbvcanfvk3is56n1az0f6")))) (build-system pyproject-build-system)
(build-system pyproject-build-system) (arguments (list #:test-backend #~'unittest))
(native-inputs (list python-setuptools python-wheel)) (native-inputs
(home-page "https://github.com/stefankoegl/python-json-pointer") (list python-setuptools
(synopsis "Identify specific nodes in a JSON document") python-wheel))
(description "@code{jsonpointer} allows you to access specific nodes (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).") by path in a JSON document (see RFC 6901).")
(license license:bsd-3))) (license license:bsd-3)))
(define-public python-jsonpatch (define-public python-jsonpatch
(package (package