gnu: python-pbkdf2: Fix tests.

* gnu/packages/python.scm (python-pbkdf2)[arguments]: Replace 'check' phase
with custom command.
This commit is contained in:
Marius Bakke 2017-02-15 22:19:08 +01:00
parent 8ef8de799f
commit fffcd8b829
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 9 additions and 0 deletions

View File

@ -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/")