guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 267951cfe2ff6233f8f416804d8e1f8fd7e47873
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Oct 5 13:27:15 2025 +0200

    gnu: python-py4j: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-py4j):
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:tests?>: Disable them, they all fail.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: I016ece3e22ed4af4b11a29539fb8a97db4c36689
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 180c941211..9823cceb57 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3187,7 +3187,9 @@ templates, understands numpydoc and Google-style 
docstrings.")
               (sha256
                (base32
                 "1fwdx92cdaiviradksfyygg05g1fpc3x2lf65bv5rnispcam6vhb"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))  ; Requires a running JVM?
+    (native-inputs (list python-setuptools))
     (home-page "https://www.py4j.org/";)
     (synopsis "Dynamically access arbitrary Java objects from Python")
     (description

Reply via email to