diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-07 21:27:01 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:41 +0000 |
commit | 574e2ecadcc3f37a9e726bd8c8022fb0362c2b55 (patch) | |
tree | dccf5e85cb55349a38416031053b9b446551837e | |
parent | 36e2744b3ff328a36be4f9bf9fd84c06d7cd07fc (diff) | |
download | guix-574e2ecadcc3f37a9e726bd8c8022fb0362c2b55.tar.gz guix-574e2ecadcc3f37a9e726bd8c8022fb0362c2b55.zip |
gnu: python-jsonpointer: Update to 1.14.
* gnu/packages/python-xyz.scm (python-jsonpointer): Update to 1.14.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I24c105f237a018c114a84f321b3b558484dcab5e
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9634466742..64c1d72712 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25594,15 +25594,16 @@ manipulation, or @code{stdout}.") (define-public python-jsonpointer (package (name "python-jsonpointer") - (version "1.10") + (version "1.14") (source (origin (method url-fetch) (uri (pypi-uri "jsonpointer" version)) (sha256 (base32 - "1cg0gvgqjysydv6p45v4jywg1jb3v48c7m3cbpi57zgf6nndr9cz")))) - (build-system python-build-system) + "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 |