diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 17:16:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:13:30 +0100 |
commit | 45fd0081ec8a6b47e87fea60abcefea736acbda4 (patch) | |
tree | 8161706efd18cc0fd8b150ea6a03faf3c2767494 | |
parent | 2d7db192260f59b996d16e239bb9211375ec31c3 (diff) | |
download | guix-45fd0081ec8a6b47e87fea60abcefea736acbda4.tar.gz |
gnu: python-xlrd: Use INVOKE.
* gnu/packages/python-xyz.scm (python-xlrd)[arguments]: Unconditionally return #T from "check" phase.
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index bf987b716b..43b0e26f8b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6091,7 +6091,7 @@ and MAC network addresses.") (modify-phases %standard-phases ;; Current test in setup.py does not work as of 1.0.0, so use nose to ;; run tests instead for now. - (replace 'check (lambda _ (zero? (system* "nosetests"))))))) + (replace 'check (lambda _ (invoke "nosetests")))))) (native-inputs `(("python-nose" ,python-nose))) (home-page "http://www.python-excel.org/") (synopsis "Library for extracting data from Excel files") |