guix_mirror_bot pushed a commit to branch master
in repository guix.

commit ac2d9c7ca7cd60a80065bc00512146007e17f14e
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Oct 4 00:54:04 2025 +0200

    gnu: python-pymd4c: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-pymd4c):
    [source]: Switch to git-fetch.
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:tests?>: Disable them.
    [native-inputs]: Add python-setuptools. Remove python-flake8.
    
    Change-Id: I1df009b2002694b9b0afe5b0a9e4e6e56a30b066
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fb9e875bf7..35c2cd17fa 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4208,15 +4208,17 @@ state changes.")
     (version "0.4.6.0b1")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "pymd4c" version))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/dominickpastore/pymd4c";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "07s3arn85ri92im6x3ipljdmrxmpik7irs06i6lm17j1x6j9841d"))))
-    (build-system python-build-system)
-    (inputs
-     (list md4c))
-    (native-inputs
-     (list python-flake8 python-pkgconfig pkg-config))
+        (base32 "0skmdn2bxfc546djxapdgb0bjvlr3c7a3kkv7j3bpx9zw09m0rcs"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ; No tests.
+    (inputs (list md4c))
+    (native-inputs (list pkg-config python-pkgconfig python-setuptools))
     (home-page "https://github.com/dominickpastore/pymd4c";)
     (synopsis "Python bindings for MD4C")
     (description

Reply via email to