mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
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>
This commit is contained in:
committed by
Sharlatan Hellseher
parent
40cd075186
commit
8c7e3e027f
@@ -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.
|
;; This is a command-line tool, so no "python-" prefix.
|
||||||
(name "jube")
|
(name "jube")
|
||||||
(version "2.6.1")
|
(version "2.6.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method url-fetch)
|
||||||
"http://apps.fz-juelich.de/jsc/jube/jube2/download.php?version="
|
(uri (string-append
|
||||||
version))
|
"http://apps.fz-juelich.de/jsc/jube/jube2/download.php?version="
|
||||||
(sha256
|
version))
|
||||||
(base32
|
(sha256
|
||||||
"0r5d2gdqa0f4c468q3k25ycw1k2g76gg8fyiln4ni98fvfsbx3il"))
|
(base32 "0r5d2gdqa0f4c468q3k25ycw1k2g76gg8fyiln4ni98fvfsbx3il"))
|
||||||
(file-name (string-append "jube-" version ".tar.gz"))))
|
(file-name (string-append "jube-" version ".tar.gz"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(native-inputs (list python-pyyaml)) ; pyyaml is needed for tests
|
(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")
|
(home-page "https://apps.fz-juelich.de/jsc/jube/jube2/docu/index.html")
|
||||||
(synopsis "Benchmarking environment")
|
(synopsis "Benchmarking environment")
|
||||||
(description
|
(description
|
||||||
|
|||||||
Reference in New Issue
Block a user