This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch core-updates-frozen
in repository guix.
The following commit(s) were added to refs/heads/core-updates-frozen by this
push:
new 235adae gnu: python-xlwt: Use GUIX_PYTHONPATH instead of PYTHONPATH.
235adae is described below
commit 235adaeec682a0669335f06f194a7ef166d45c02
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Nov 18 16:09:26 2021 +0000
gnu: python-xlwt: Use GUIX_PYTHONPATH instead of PYTHONPATH.
* gnu/packages/python-xyz.scm (python-xlwt)[arguments]: Update 'check phase
to
set GUIX_PYTHONPATH instead of PYTHONPATH.
---
gnu/packages/python-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bc2e76b..b7c112a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10814,9 +10814,9 @@ Unicode-aware. It is not intended as an end-user
tool.")
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
- (setenv "PYTHONPATH"
+ (setenv "GUIX_PYTHONPATH"
(string-append (getcwd) "/build/lib:"
- (getenv "PYTHONPATH")))
+ (getenv "GUIX_PYTHONPATH")))
(invoke "nosetests" "-v")))))))
(native-inputs
`(("nose" ,python-nose)))