diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 17:50:42 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-27 12:46:30 +0200 |
commit | 9cbd819ab72a52491afa30e7dae2e2c75d51a80c (patch) | |
tree | ed82ee082ab7ef9eb836efa04c41aa2c778331b0 /gnu | |
parent | b44b14cd85b2962bc3062c6da59a83deacb0de13 (diff) | |
download | patches-9cbd819ab72a52491afa30e7dae2e2c75d51a80c.tar patches-9cbd819ab72a52491afa30e7dae2e2c75d51a80c.tar.gz |
gnu: python-patsy: Return #t from phases.
* gnu/packages/statistics.scm (python-patsy)[arguments]: Substitute
INVOKE for SYSTEM*.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 9853e842c2..8be3ce1a80 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1816,7 +1816,8 @@ and fast file reading.") (arguments `(#:phases (modify-phases %standard-phases - (replace 'check (lambda _ (zero? (system* "nosetests" "-v"))))))) + (replace 'check + (lambda _ (invoke "nosetests" "-v")))))) (propagated-inputs `(("python-numpy" ,python-numpy) ("python-scipy" ,python-scipy) |