gnu: python-scipy: Fix expression after changing to 'modify-phases'.

This is a followup to 16ca6aaac8.

* gnu/packages/python.scm (python-scipy)[arguments]: Fix parens.
This commit is contained in:
Marius Bakke 2017-01-19 17:46:48 +01:00
parent 16ca6aaac8
commit db967b6462
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 3 additions and 3 deletions

View File

@ -3951,7 +3951,7 @@ functions.")
(lambda _ (lambda _
(substitute* "scipy/integrate/tests/test_quadpack.py" (substitute* "scipy/integrate/tests/test_quadpack.py"
(("libm.so") "libm.so.6")) (("libm.so") "libm.so.6"))
#t) #t))
(add-before 'build 'configure-openblas (add-before 'build 'configure-openblas
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(call-with-output-file "site.cfg" (call-with-output-file "site.cfg"
@ -3970,7 +3970,7 @@ atlas_libs = openblas
(assoc-ref inputs "openblas") (assoc-ref inputs "openblas")
(assoc-ref inputs "openblas") (assoc-ref inputs "openblas")
(assoc-ref inputs "openblas")))) (assoc-ref inputs "openblas"))))
#t) #t))
(delete 'check) (delete 'check)
(add-after 'install 'install-doc (add-after 'install 'install-doc
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)
@ -4004,7 +4004,7 @@ atlas_libs = openblas
;; Tests can only be run after the library has been installed and not ;; Tests can only be run after the library has been installed and not
;; within the source directory. ;; within the source directory.
(with-directory-excursion "/tmp" (with-directory-excursion "/tmp"
(zero? (system* "python" "-c" "import scipy; scipy.test()")))))))))) (zero? (system* "python" "-c" "import scipy; scipy.test()"))))))))
(home-page "http://www.scipy.org/") (home-page "http://www.scipy.org/")
(synopsis "The Scipy library provides efficient numerical routines") (synopsis "The Scipy library provides efficient numerical routines")
(description "The SciPy library is one of the core packages that make up (description "The SciPy library is one of the core packages that make up