diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-21 09:04:16 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-21 09:07:50 +0100 |
commit | e74bcbc64fc32db22985723e9caa4f0b0bbb38d1 (patch) | |
tree | c19c154094272b4f03d8693293101043b219468a | |
parent | 6c9bbf80711d002ab56b2281f1d44c26bdc30f27 (diff) | |
download | guix-e74bcbc64fc32db22985723e9caa4f0b0bbb38d1.tar.gz |
gnu: python-scanpy: Set PYTHONPATH variable.
This is a follow-up to commit 664721422cd17c151df00b9ecab268d1aa18e3b3. * gnu/packages/bioinformatics.scm (python-scanpy)[arguments]: Set PYTHONPATH variable during the build as GUIX_PYTHONPATH does not have the intended effect.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 3668d0f0af..aef7175b94 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -11956,7 +11956,7 @@ implementation differs in these ways: ;; packaged yet. (delete-file "scanpy/tests/external/test_scanorama_integrate.py") - (setenv "GUIX_PYTHONPATH" + (setenv "PYTHONPATH" (string-append (getcwd) ":" (assoc-ref inputs "python-anndata:source") ":" (getenv "GUIX_PYTHONPATH"))) |