guix_mirror_bot pushed a commit to branch master
in repository guix.

commit daca0d9d26f415c40e49640eb2eb3dd33f00e354
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Aug 14 11:22:02 2025 +0200

    gnu: onnx-optimizer: Switch to pyproject.
    
    * gnu/packages/machine-learning.scm (onnx-optimizer): Switch to
    pyproject.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools, python-wheel.
    
    Change-Id: Idca467e74209bfe058cf9070412769916a11e68c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/machine-learning.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index d673618fec..88f5c540a0 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1815,7 +1815,7 @@ operators and standard data types.")
               (patches (search-patches "onnx-optimizer-system-library.patch"))
               (modules '((guix build utils)))
               (snippet '(delete-file-recursively "third_party"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments
      ;; reuse build system tweaks
      (substitute-keyword-arguments (package-arguments onnx)
@@ -1843,7 +1843,7 @@ operators and standard data types.")
     (native-inputs
      (append
       (list cmake-minimal python-pytest python-pytest-runner
-            python-coverage)
+            python-coverage python-setuptools python-wheel)
       (filter
        (lambda (pkg)
          (member (or (%current-target-system)

Reply via email to