gnu: pigx-rnaseq: Fix Python module capture.

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

* gnu/packages/bioinformatics.scm (pigx-rnaseq)[arguments]: Set PYTHONPATH
variable in new build phase.
This commit is contained in:
Ricardo Wurmus 2022-01-27 22:06:26 +01:00
parent b72f5255b0
commit c6bf89cff0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -10895,6 +10895,9 @@ (define-public pigx-rnaseq
(add-before 'bootstrap 'autoreconf
(lambda _
(invoke "autoreconf" "-vif")))
(add-before 'configure 'set-PYTHONPATH
(lambda _
(setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH"))))
(add-before 'check 'set-timezone
;; The readr package is picky about timezones.
(lambda* (#:key inputs #:allow-other-keys)