gnu: python-tables: Use INVOKE.

* gnu/packages/python-xyz.scm (python-tables)[arguments]: Unconditionally
return #T from "check" and "build" phases.
master
Ricardo Wurmus 2019-01-23 17:19:20 +01:00
parent 45fd0081ec
commit 35d79d6103
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 6 deletions

View File

@ -6167,14 +6167,14 @@ printing of sub-tables by specifying a row range.")
#t))
(replace 'build
(lambda* (#:key inputs #:allow-other-keys)
(zero? (system* "python" "setup.py" "build"
(string-append "--hdf5="
(assoc-ref inputs "hdf5"))))))
(invoke "python" "setup.py" "build"
(string-append "--hdf5="
(assoc-ref inputs "hdf5")))))
(replace 'check
(lambda* (#:key inputs #:allow-other-keys)
(zero? (system* "python" "setup.py" "check"
(string-append "--hdf5="
(assoc-ref inputs "hdf5")))))))))
(invoke "python" "setup.py" "check"
(string-append "--hdf5="
(assoc-ref inputs "hdf5"))))))))
(propagated-inputs
`(("python-numexpr" ,python-numexpr)
("python-numpy" ,python-numpy)))