diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-02 12:47:43 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-02 16:33:56 +0100 |
commit | 13e7c884c7e90d815e950127a06e81ecf35177d2 (patch) | |
tree | 88ee2873a9e48f306ccf8dfa7ebb5c603e5805bf /gnu/packages | |
parent | ec933e05a20cc70d23f576c5763d6c69eb8452eb (diff) | |
download | patches-13e7c884c7e90d815e950127a06e81ecf35177d2.tar patches-13e7c884c7e90d815e950127a06e81ecf35177d2.tar.gz |
gnu: python-clint: Use INVOKE.
* gnu/packages/python.scm (python-clint)[arguments]: Use INVOKE.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 76ac5bc2fc..e51de2a201 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7728,8 +7728,7 @@ Blog, News or Announcements section to a Sphinx website.") '(#:phases (modify-phases %standard-phases (replace 'check - (lambda _ - (zero? (system* "py.test" "-v"))))))) + (lambda _ (invoke "py.test" "-v")))))) (native-inputs `(("python-pytest" ,python-pytest))) (propagated-inputs |