mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: httpie: Update to 3.0.2.
* gnu/packages/python-web.scm (httpie): Update to 3.0.2. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
51199431e7
commit
88eb611c10
1 changed files with 10 additions and 4 deletions
|
@ -741,21 +741,27 @@ (define-public python2-httplib2
|
||||||
(define-public httpie
|
(define-public httpie
|
||||||
(package
|
(package
|
||||||
(name "httpie")
|
(name "httpie")
|
||||||
(version "2.3.0")
|
(version "3.0.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "httpie" version))
|
(uri (pypi-uri "httpie" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15ngl3yc186gkgqdx8iav9bpj8gxjpzz26y32z92jwyhj4cmfh6m"))))
|
"16ay8mx2v1z3rywsszy055l5k50qjiwyc3pds5wxxzd1n9a79w97"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; The tests attempt to access external web servers, so we cannot run them.
|
;; The tests attempt to access external web servers, so we cannot run them.
|
||||||
'(#:tests? #f))
|
'(#:tests? #f))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-colorama python-pygments python-requests
|
(list python-colorama
|
||||||
python-requests-toolbelt))
|
python-pygments
|
||||||
|
python-requests
|
||||||
|
python-requests-toolbelt
|
||||||
|
python-pysocks
|
||||||
|
python-charset-normalizer
|
||||||
|
python-defusedxml
|
||||||
|
python-multidict))
|
||||||
(home-page "https://httpie.io")
|
(home-page "https://httpie.io")
|
||||||
(synopsis "cURL-like tool for humans")
|
(synopsis "cURL-like tool for humans")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue