diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-16 04:00:55 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-16 05:02:30 -0400 |
commit | 9f68acc1682bc814fa978a6cdd10fca4ea2bc962 (patch) | |
tree | 88b6f605560112f888f68a9549e5304db1f24546 /gnu/packages/python.scm | |
parent | 408fcff67878636d88df3bfab8c983b32692900e (diff) | |
download | guix-9f68acc1682bc814fa978a6cdd10fca4ea2bc962.tar.gz guix-9f68acc1682bc814fa978a6cdd10fca4ea2bc962.zip |
gnu: python-six: Use invoke instead of system*.
* gnu/packages/python.scm (python-six)[arguments]: Use invoke.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 82639939fd..cd940d68f6 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1092,7 +1092,7 @@ from the Python interpreter, or as a small part of a larger application.") (modify-phases %standard-phases (replace 'check (lambda _ - (zero? (system* "py.test" "-v"))))))) + (invoke "py.test" "-v")))))) (native-inputs `(("python-py" ,python-py) ("python-pytest" ,python-pytest-bootstrap))) |