guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 836f3c5768e5022c55842420e20fb53611bba9f7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Dec 15 09:49:56 2025 +0000

    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
---
 gnu/packages/python-xyz.scm | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b001e2000d..dc4398dc31 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20152,24 +20152,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

Reply via email to