guix-commits
[Top][All Lists]
Advanced

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

03/08: gnu: python-pbkdf2: Fix tests.


From: Marius Bakke
Subject: 03/08: gnu: python-pbkdf2: Fix tests.
Date: Sat, 18 Feb 2017 19:23:00 -0500 (EST)

mbakke pushed a commit to branch python-tests
in repository guix.

commit fffcd8b829d1fbd8bdb6af85385033224c576cec
Author: Marius Bakke <address@hidden>
Date:   Wed Feb 15 22:19:08 2017 +0100

    gnu: python-pbkdf2: Fix tests.
    
    * gnu/packages/python.scm (python-pbkdf2)[arguments]: Replace 'check' phase
    with custom command.
---
 gnu/packages/python.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index fff9a66..70aa8cd 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -12967,6 +12967,15 @@ protocols written in pure Python.")
         (base32
          "0yb99rl2mbsaamj571s1mf6vgniqh23v98k4632150hjkwv9fqxc"))))
     (build-system python-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (setenv "PYTHONPATH"
+                     (string-append (getcwd) "/build/lib:"
+                                    (getenv "PYTHONPATH")))
+             (zero? (system* "python" "test/test_pbkdf2.py")))))))
     (propagated-inputs
      `(("python-pycrypto" ,python-pycrypto)))  ; optional
     (home-page "http://www.dlitz.net/software/python-pbkdf2/";)



reply via email to

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