guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

37/57: gnu: python-pillow: Fix build.


From: Hartmut Goebel
Subject: 37/57: gnu: python-pillow: Fix build.
Date: Thu, 13 Oct 2016 15:20:34 +0000 (UTC)

htgoebel pushed a commit to branch wip-python-build-system
in repository guix.

commit 88eba9fabf30ab0bec96447e569bc40a8a8f3f68
Author: Hartmut Goebel <address@hidden>
Date:   Fri Oct 7 20:32:47 2016 +0200

    gnu: python-pillow: Fix build.
    
    * gnu/packages/python.scm (python-pillow)[check-installed]: Add
      installed site-package to PYTHONPATH.
---
 gnu/packages/python.scm |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4ea0265..f2e2a5b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3735,9 +3735,12 @@ services for your Python modules and applications.")
      `(#:phases (modify-phases %standard-phases
                   (add-after
                    'install 'check-installed
-                   (lambda _
+                   (lambda* (#:key outputs inputs #:allow-other-keys)
                      (begin
                        (setenv "HOME" (getcwd))
+                       ;; Make installed package available for running the
+                       ;; tests
+                       (add-installed-pythonpath outputs inputs)
                        (and (zero? (system* "python" "selftest.py"
                                             "--installed"))
                             (zero? (system* "python" "test-installed.py"))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]