mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: pigx-chipseq: Fix Python module capture.
The build system expects all Python modules to be on PYTHONPATH. * gnu/packages/bioinformatics.scm (pigx-chipseq)[arguments]: Set PYTHONPATH variable in new build phase.
This commit is contained in:
parent
c6bf89cff0
commit
f127bce3ec
1 changed files with 4 additions and 1 deletions
|
@ -10972,7 +10972,10 @@ (define-public pigx-chipseq
|
|||
(modify-phases %standard-phases
|
||||
(add-before 'bootstrap 'autoreconf
|
||||
(lambda _
|
||||
(invoke "autoreconf" "-vif"))))))
|
||||
(invoke "autoreconf" "-vif")))
|
||||
(add-before 'configure 'set-PYTHONPATH
|
||||
(lambda _
|
||||
(setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH")))))))
|
||||
(inputs
|
||||
(list grep
|
||||
coreutils
|
||||
|
|
Loading…
Reference in a new issue