summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-15 09:49:56 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:19:23 +0100
commit6ee29be434aa6e3091b32497c5572f287b891406 (patch)
treea6ab2ef3403a759986c3671e5d43ef6208a7dee9 /gnu/packages/python-xyz.scm
parentfbbec15aac13d746b9f08002c419027de423fe6c (diff)
gnu: python-jmespath: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-jmespath): [build-system]: Switch to pyproject-build-system. [native-inputs]: Remove python-setuptools-67; add python-setuptools. Change-Id: I7c140b87eb9da476cfffc090663e5960b2c57de8 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm36
1 files changed, 18 insertions, 18 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 84f79dadb79..e0580a09ccf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20198,24 +20198,24 @@ that deprecated code is eventually removed.")
(define-public python-jmespath
(package
- (name "python-jmespath")
- (version "1.0.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "jmespath" version))
- (sha256
- (base32
- "1gpdc1f0q5c9scmbw1l9g40jjfk3pxwg91ayvn7xbvvddlh1n9lh"))))
- (build-system python-build-system)
- (native-inputs
- (list python-pytest python-setuptools-67))
- (synopsis "JSON Matching Expressions")
- (description "JMESPath (pronounced “james path”) is a Python library that
-allows one to declaratively specify how to extract elements from a JSON
-document.")
- (home-page "https://github.com/jmespath/jmespath.py")
- (license license:expat)))
+ (name "python-jmespath")
+ (version "1.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jmespath" version))
+ (sha256
+ (base32 "1gpdc1f0q5c9scmbw1l9g40jjfk3pxwg91ayvn7xbvvddlh1n9lh"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (home-page "https://github.com/jmespath/jmespath.py")
+ (synopsis "JSON Matching Expressions")
+ (description
+ "JMESPath (pronounced “james path”) is a Python library that allows one
+to declaratively specify how to extract elements from a JSON document.")
+ (license license:expat)))
(define-public python-asteval
(package