mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: multiqc: Use GUIX_PYTHONPATH.
* gnu/packages/bioinformatics.scm (multiqc)[arguments]: Replace PYTHONPATH with GUIX_PYTHONPATH.
This commit is contained in:
parent
b2bfedcdb3
commit
e2ca652c98
1 changed files with 3 additions and 2 deletions
|
@ -8893,8 +8893,9 @@ (define-public multiqc
|
|||
;; ModuleNotFoundError: No module named 'multiqc.modules.ccs'
|
||||
(delete-file "/tmp/tests/unit_tests/test_ccs.py")
|
||||
(with-directory-excursion "/tmp/tests"
|
||||
(setenv "PYTHONPATH" (string-append here ":" (getenv "PYTHONPATH")))
|
||||
(invoke "python" "-munittest" "discover")))))))))
|
||||
(setenv "GUIX_PYTHONPATH"
|
||||
(string-append here ":" (getenv "GUIX_PYTHONPATH")))
|
||||
(invoke "python" "-munittest" "discover"))))))
|
||||
(propagated-inputs
|
||||
`(("python-click" ,python-click)
|
||||
("python-coloredlogs" ,python-coloredlogs)
|
||||
|
|
Loading…
Reference in a new issue