summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorkiasoc5 <kiasoc5@tutanota.com>2022-01-26 22:43:44 -0500
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2022-01-28 09:42:34 +0100
commit88eb611c106d9a76b3905ae30e4a56c45c369683 (patch)
tree6d9cf6e939450fd2dd5d598e06ffaf2269bed218 /gnu/packages/python-web.scm
parent51199431e7fdf381165c6672f92cfb9025cb13c7 (diff)
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>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm14
1 files changed, 10 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 406c6cb51bc..6a3fc27353b 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -741,21 +741,27 @@ other HTTP libraries.")
741(define-public httpie 741(define-public httpie
742 (package 742 (package
743 (name "httpie") 743 (name "httpie")
744 (version "2.3.0") 744 (version "3.0.2")
745 (source 745 (source
746 (origin 746 (origin
747 (method url-fetch) 747 (method url-fetch)
748 (uri (pypi-uri "httpie" version)) 748 (uri (pypi-uri "httpie" version))
749 (sha256 749 (sha256
750 (base32 750 (base32
751 "15ngl3yc186gkgqdx8iav9bpj8gxjpzz26y32z92jwyhj4cmfh6m")))) 751 "16ay8mx2v1z3rywsszy055l5k50qjiwyc3pds5wxxzd1n9a79w97"))))
752 (build-system python-build-system) 752 (build-system python-build-system)
753 (arguments 753 (arguments
754 ;; The tests attempt to access external web servers, so we cannot run them. 754 ;; The tests attempt to access external web servers, so we cannot run them.
755 '(#:tests? #f)) 755 '(#:tests? #f))
756 (propagated-inputs 756 (propagated-inputs
757 (list python-colorama python-pygments python-requests 757 (list python-colorama
758 python-requests-toolbelt)) 758 python-pygments
759 python-requests
760 python-requests-toolbelt
761 python-pysocks
762 python-charset-normalizer
763 python-defusedxml
764 python-multidict))
759 (home-page "https://httpie.io") 765 (home-page "https://httpie.io")
760 (synopsis "cURL-like tool for humans") 766 (synopsis "cURL-like tool for humans")
761 (description 767 (description