mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: pigx-bsseq: Fix Python module capture.
The build system expects all Python modules to be on PYTHONPATH. * gnu/packages/bioinformatics.scm (pigx-bsseq)[arguments]: Set PYTHONPATH variable in new build phase.
This commit is contained in:
parent
f127bce3ec
commit
f4cbf11c65
1 changed files with 3 additions and 0 deletions
|
@ -11061,6 +11061,9 @@ (define-public pigx-bsseq
|
||||||
(add-before 'bootstrap 'autoreconf
|
(add-before 'bootstrap 'autoreconf
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "autoreconf" "-vif")))
|
(invoke "autoreconf" "-vif")))
|
||||||
|
(add-before 'configure 'set-PYTHONPATH
|
||||||
|
(lambda _
|
||||||
|
(setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH"))))
|
||||||
(add-before 'check 'set-timezone
|
(add-before 'check 'set-timezone
|
||||||
;; The readr package is picky about timezones.
|
;; The readr package is picky about timezones.
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue