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

commit 771af43a17b7cb6b77058810de7013c0c31f8ae0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 17:47:56 2026 +0100

    gnu: python-jsonpath-ng: Build from git.
    
    * gnu/packages/python-xyz.scm (python-jsonpath-ng):
    [source]: Switch to git-fetch.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: I819bc61b4a931d12a0c7ab053d7963d794c414c0
---
 gnu/packages/python-xyz.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e7c2ea8b08..7a9bcf010c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2089,15 +2089,17 @@ bound.")
     (version "1.7.0" )
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "jsonpath-ng" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/h2non/jsonpath-ng";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "0g5bpq02pl9mv7mbqixvnagq8f9v0jab6wqmbxw9rxsz9vyzgxgn"))))
+        (base32 "0z0qm5sgzal0qzml2fmc9h5nim8m3x6sz55gqhcd9c2jrq8jmwmi"))))
     (build-system pyproject-build-system)
     (native-inputs
      (list python-pytest
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (propagated-inputs
      (list python-ply))
     (home-page "https://github.com/h2non/jsonpath-ng";)

Reply via email to