This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 7ee70d0906 gnu: img2pdf: Switch to pyproject, disable tests.
7ee70d0906 is described below

commit 7ee70d09069df3c02afe1619774b043c54bc2cd9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Dec 18 20:51:27 2025 +0000

    gnu: img2pdf: Switch to pyproject, disable tests.
    
    * gnu/packages/pdf.scm (img2pdf):
    [arguments] <tests?>: Disable for now.
    [propagated-inputs]: Move from here ...
    [inputs]: ... to here.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: I4dbf9f469bafd020a20e3a180b6ebc456981583e
---
 gnu/packages/pdf.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index a38cf443ea..3a20b4de16 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -1340,9 +1340,15 @@ the PDF pages.")
        (uri (pypi-uri "img2pdf" version))
        (sha256
         (base32 "12gjd98gnx117d5v36gpw55iplgvm6bvd532gnfibg1jp2g2fvih"))))
-    (build-system python-build-system)
-    (propagated-inputs
-     (list python-pikepdf python-pillow
+    (build-system pyproject-build-system)
+    (arguments
+     ;; TODO: See: 
<https://codeberg.org/guix/guix/issues/4932#issuecomment-9045882>.
+     (list #:tests? #f))
+    (native-inputs
+     (list python-setuptools))
+    (inputs
+     (list python-pikepdf
+           python-pillow
            `(,python "tk")))
     (home-page "https://gitlab.mister-muffin.de/josch/img2pdf";)
     (synopsis "Convert images to PDF via direct JPEG inclusion")

Reply via email to