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

commit 8a138330b40b9329e2363c6327ce21cfddf739c6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 18:49:17 2026 +0100

    gnu: python-flexparser: Build from git.
    
    * gnu/packages/python-xyz.scm (python-flexparser):
    [source]: Switch to git-fetch.
    [native-inputs]: Remove python-pytest-mpl, python-pytest-subtests, and
    python-wheel.
    
    Change-Id: I2ceb96cc6814b7c1328a3834e216515f27816c89
---
 gnu/packages/python-xyz.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2ec43781b7..07997c8ccb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1627,18 +1627,18 @@ expensive calculations.  It was started as part of
     (version "0.4")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "flexparser" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/hgrecco/flexparser";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "1cpn5scxnxbd2jrnany4znzzn9im5h5gwr59bp62rglman89hv96"))))
+        (base32 "1aj6b2a5w0z814x4gr8z4lmpf4ivp41gikx998lkk7rbdgh2kryh"))))
     (build-system pyproject-build-system)
     (native-inputs
      (list python-pytest
-           python-pytest-mpl
-           python-pytest-subtests
            python-setuptools
-           python-setuptools-scm
-           python-wheel))
+           python-setuptools-scm))
     (propagated-inputs
      (list python-typing-extensions))
     (home-page "https://github.com/hgrecco/flexparser";)

Reply via email to