diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-05 13:27:15 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 17:09:11 +0100 |
| commit | 267951cfe2ff6233f8f416804d8e1f8fd7e47873 (patch) | |
| tree | 3aa133b74915e9e43e5e34744f052895b25ba7bf /gnu/packages/python-xyz.scm | |
| parent | 50de0102537c6c6029cc2631360a594984c448a0 (diff) | |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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 |
