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 4b8bc32  gnu: python2-send2trash: Fix setenv build phase.
4b8bc32 is described below

commit 4b8bc321e1ba48a7e270758cf36b9196097d31c4
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Nov 18 15:22:07 2021 +0000

    gnu: python2-send2trash: Fix setenv build phase.
    
    * gnu/packages/python-xyz.scm (python2-send2trash)[arguments]: Use
    GUIX_PYTHONPATH instead of PYTHONPATH.
---
 gnu/packages/python-xyz.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0a2875d..5f99073 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20481,9 +20481,8 @@ user's @file{~/Trash} directory.")
           `(modify-phases ,phases
              (add-before 'check 'setenv
                (lambda _
-                 (setenv "PYTHONPATH"
-                         (string-append (getcwd) ":" (getenv "PYTHONPATH")))
-                 #t)))))))))
+                 (setenv "GUIX_PYTHONPATH"
+                         (string-append (getcwd) ":" (getenv 
"GUIX_PYTHONPATH"))))))))))))
 
 (define-public python-pyfavicon
   (package

Reply via email to