summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-06 17:49:08 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-06 22:08:09 +0100
commit8c7e3e027fafcc2e198877796309e7c703d55581 (patch)
treeaa17c48ad649e2c12ec7ec2476229d757b0e90bb /gnu/packages/python-xyz.scm
parent40cd075186b6d0721f165bb15fd8d054cb983c8e (diff)
gnu: jube: Switch to pyproject.
* gnu/packages/python-xyz.scm (jube): [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable them explicitely. [native-inputs]: Add python-setuptools-next. Remove python-pyyaml. [propagated-inputs]: Add python-pyyaml, listed in the package as an install requirements, and no tests were run in the first place. Change-Id: I4b11597196a5d9e6a227d064cf6ab96276a57aff Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm26
1 files changed, 15 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c7dbd6566c..d4bf819bb9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31567,17 +31567,21 @@ repository is provided via Python API and as a compressed JSON file.")
;; This is a command-line tool, so no "python-" prefix.
(name "jube")
(version "2.6.1")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "http://apps.fz-juelich.de/jsc/jube/jube2/download.php?version="
- version))
- (sha256
- (base32
- "0r5d2gdqa0f4c468q3k25ycw1k2g76gg8fyiln4ni98fvfsbx3il"))
- (file-name (string-append "jube-" version ".tar.gz"))))
- (build-system python-build-system)
- (native-inputs (list python-pyyaml)) ; pyyaml is needed for tests
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://apps.fz-juelich.de/jsc/jube/jube2/download.php?version="
+ version))
+ (sha256
+ (base32 "0r5d2gdqa0f4c468q3k25ycw1k2g76gg8fyiln4ni98fvfsbx3il"))
+ (file-name (string-append "jube-" version ".tar.gz"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ; No tests.
+ (propagated-inputs (list python-pyyaml))
+ (native-inputs (list python-setuptools-next))
(home-page "https://apps.fz-juelich.de/jsc/jube/jube2/docu/index.html")
(synopsis "Benchmarking environment")
(description