gnu: python-tables: Use INVOKE.
* gnu/packages/python-xyz.scm (python-tables)[arguments]: Unconditionally return #T from "check" and "build" phases.
This commit is contained in:
parent
45fd0081ec
commit
35d79d6103
|
@ -6167,14 +6167,14 @@ printing of sub-tables by specifying a row range.")
|
||||||
#t))
|
#t))
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(zero? (system* "python" "setup.py" "build"
|
(invoke "python" "setup.py" "build"
|
||||||
(string-append "--hdf5="
|
(string-append "--hdf5="
|
||||||
(assoc-ref inputs "hdf5"))))))
|
(assoc-ref inputs "hdf5")))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(zero? (system* "python" "setup.py" "check"
|
(invoke "python" "setup.py" "check"
|
||||||
(string-append "--hdf5="
|
(string-append "--hdf5="
|
||||||
(assoc-ref inputs "hdf5")))))))))
|
(assoc-ref inputs "hdf5"))))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-numexpr" ,python-numexpr)
|
`(("python-numexpr" ,python-numexpr)
|
||||||
("python-numpy" ,python-numpy)))
|
("python-numpy" ,python-numpy)))
|
||||||
|
|
Loading…
Reference in New Issue