gnu: multiqc: Use GUIX_PYTHONPATH.
* gnu/packages/bioinformatics.scm (multiqc)[arguments]: Replace PYTHONPATH with GUIX_PYTHONPATH.master
parent
b2bfedcdb3
commit
e2ca652c98
|
@ -8893,8 +8893,9 @@ replacement for strverscmp.")
|
||||||
;; ModuleNotFoundError: No module named 'multiqc.modules.ccs'
|
;; ModuleNotFoundError: No module named 'multiqc.modules.ccs'
|
||||||
(delete-file "/tmp/tests/unit_tests/test_ccs.py")
|
(delete-file "/tmp/tests/unit_tests/test_ccs.py")
|
||||||
(with-directory-excursion "/tmp/tests"
|
(with-directory-excursion "/tmp/tests"
|
||||||
(setenv "PYTHONPATH" (string-append here ":" (getenv "PYTHONPATH")))
|
(setenv "GUIX_PYTHONPATH"
|
||||||
(invoke "python" "-munittest" "discover")))))))))
|
(string-append here ":" (getenv "GUIX_PYTHONPATH")))
|
||||||
|
(invoke "python" "-munittest" "discover"))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-click" ,python-click)
|
`(("python-click" ,python-click)
|
||||||
("python-coloredlogs" ,python-coloredlogs)
|
("python-coloredlogs" ,python-coloredlogs)
|
||||||
|
|
Reference in New Issue