summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-15 23:55:14 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-22 23:09:36 +0100
commitbe559231c5c56cd98f4a8a1945958bef9d23255b (patch)
tree07e377eab6969dba05ea517a01ef0592f0faa432 /gnu/packages/python-xyz.scm
parent0ce8ffc915a586c775149cf2a3dd8618f9180e68 (diff)
gnu: python-drmaa: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-drmaa): [build-system]: Switch to pyproject-build-system. [arguments]: Run guix style -S arguments. [native-inputs]: Add python-setuptools. Change-Id: I22101509e65378aa5f0fe3f944402e8c8b37f51b Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ce238d1aef1..b9cc43b059d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13535,16 +13535,19 @@ etc. The core of this module is a decorator factory.")
(uri (pypi-uri "drmaa" version))
(sha256
(base32 "0xzqriqyvk5b8hszbavsyxd29wm3sxirm8zvvdm73rs2iq7w4hkx"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
;; The test suite requires libdrmaa which is provided by the cluster
;; environment. At runtime the environment variable DRMAA_LIBRARY_PATH
;; should be set to the path of the libdrmaa library.
(arguments
- '(#:tests? #f
- #:phases (modify-phases %standard-phases
- ;; Loading the library fails because DRMAA_LIBRARY_PATH
- ;; is not configured.
- (delete 'sanity-check))))
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Loading the library fails because DRMAA_LIBRARY_PATH
+ ;; is not configured.
+ (delete 'sanity-check))))
+ (native-inputs (list python-setuptools))
(home-page "https://pypi.org/project/drmaa/")
(synopsis "Python bindings for the DRMAA library")
(description