me
/
guix
Archived
1
0
Fork 0

gnu: pigx-scrnaseq: Fix Python module capture.

The build system expects all Python modules to be on PYTHONPATH.

* gnu/packages/bioinformatics.scm (pigx-scrnaseq)[arguments]: Set PYTHONPATH
variable in new build phase.
Ricardo Wurmus 2022-01-27 22:13:38 +01:00
parent f4cbf11c65
commit aa649ae231
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 1 deletions

View File

@ -11132,7 +11132,10 @@ methylation and segmentation.")
(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")))))))
(native-inputs
(list automake autoconf))
(inputs