diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 17:19:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:13:30 +0100 |
commit | 35d79d6103765cf0f509dc4c905a402c4c21e980 (patch) | |
tree | 45d5734cdfcdf8719fc1734c7a0ef88e88947dd3 | |
parent | 45fd0081ec8a6b47e87fea60abcefea736acbda4 (diff) | |
download | patches-35d79d6103765cf0f509dc4c905a402c4c21e980.tar patches-35d79d6103765cf0f509dc4c905a402c4c21e980.tar.gz |
gnu: python-tables: Use INVOKE.
* gnu/packages/python-xyz.scm (python-tables)[arguments]: Unconditionally
return #T from "check" and "build" phases.
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 43b0e26f8b..f020e1a62a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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))) |