gnu: python-internetarchive: Use INVOKE.
* gnu/packages/web.scm (python-internetarchive)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
16b5dafc4d
commit
b8150fa091
|
@ -5239,12 +5239,12 @@ command-line arguments or read from stdin.")
|
||||||
(add-installed-pythonpath inputs outputs)
|
(add-installed-pythonpath inputs outputs)
|
||||||
(setenv "PATH" (string-append (assoc-ref outputs "out") "/bin"
|
(setenv "PATH" (string-append (assoc-ref outputs "out") "/bin"
|
||||||
":" (getenv "PATH")))
|
":" (getenv "PATH")))
|
||||||
(zero? (system* "py.test" "-v" "-k"
|
(invoke "py.test" "-v" "-k"
|
||||||
(string-append
|
(string-append
|
||||||
;; These tests attempt to make a connection to
|
;; These tests attempt to make a connection to
|
||||||
;; an external web service.
|
;; an external web service.
|
||||||
"not test_get_item_with_kwargs"
|
"not test_get_item_with_kwargs"
|
||||||
" and not test_ia"))))))))
|
" and not test_ia")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-requests" ,python-requests)
|
`(("python-requests" ,python-requests)
|
||||||
("python-jsonpatch" ,python-jsonpatch-0.4)
|
("python-jsonpatch" ,python-jsonpatch-0.4)
|
||||||
|
|
Loading…
Reference in New Issue