me
/
guix
Archived
1
0
Fork 0

gnu: python-drmaa: Fix build failure.

* gnu/packages/python-xyz.scm (python-drmaa)[arguments]: Disable sanity
checks.
Marius Bakke 2022-02-14 23:32:14 +01:00
parent aae5efb6d4
commit 5e244cd712
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 1 deletions

View File

@ -7792,7 +7792,12 @@ etc. The core of this module is a decorator factory.")
;; 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))
(arguments
'(#: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-nose))
(home-page "https://pypi.org/project/drmaa/")