mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: pigx-scrnaseq: Set NUMBA_CACHE_DIR.
This is needed since the update of python-loompy. * gnu/packages/bioinformatics.scm (pigx-scrnaseq)[arguments]: Rename 'set-PYTHONPATH to 'set-additional-environment-variables and set NUMBA_CACHE_DIR.
This commit is contained in:
parent
e721122069
commit
df2dc0c416
1 changed files with 4 additions and 1 deletions
|
@ -11145,8 +11145,11 @@ (define-public pigx-scrnaseq
|
|||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'set-PYTHONPATH
|
||||
(add-before 'configure 'set-additional-environment-variables
|
||||
(lambda _
|
||||
;; Needed because of loompy
|
||||
(setenv "NUMBA_CACHE_DIR" "/tmp")
|
||||
;; Needed to capture environment
|
||||
(setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH")))))))
|
||||
(inputs
|
||||
(list coreutils
|
||||
|
|
Loading…
Reference in a new issue