diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:16:49 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:16:49 +0100 |
commit | dfafc29bcf5a30f9162266e1ee11d4af01e03a9a (patch) | |
tree | 1d4f65e75ca2dcde92d55f819fac5d46c4541a9e /gnu/packages/python-xyz.scm | |
parent | 8d466799519719263486c1405606dcefdc5451c7 (diff) | |
download | guix-dfafc29bcf5a30f9162266e1ee11d4af01e03a9a.tar guix-dfafc29bcf5a30f9162266e1ee11d4af01e03a9a.tar.gz |
gnu: python2-pystache: Use INVOKE.
* gnu/packages/python-xyz.scm (python2-pystache)[arguments]: Unconditionally
return #T from "check" phase.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-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 eaa7a93a8d..96a9229345 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2145,7 +2145,7 @@ logic-free templating system Mustache.") (modify-phases %standard-phases (replace 'check (lambda _ - (zero? (system* "python" "test_pystache.py"))))))))) + (invoke "python" "test_pystache.py")))))))) (define-public python-joblib (package |