From 88eb611c106d9a76b3905ae30e4a56c45c369683 Mon Sep 17 00:00:00 2001 From: kiasoc5 Date: Wed, 26 Jan 2022 22:43:44 -0500 Subject: gnu: httpie: Update to 3.0.2. * gnu/packages/python-web.scm (httpie): Update to 3.0.2. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-web.scm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 406c6cb51b..6a3fc27353 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -741,21 +741,27 @@ other HTTP libraries.") (define-public httpie (package (name "httpie") - (version "2.3.0") + (version "3.0.2") (source (origin (method url-fetch) (uri (pypi-uri "httpie" version)) (sha256 (base32 - "15ngl3yc186gkgqdx8iav9bpj8gxjpzz26y32z92jwyhj4cmfh6m")))) + "16ay8mx2v1z3rywsszy055l5k50qjiwyc3pds5wxxzd1n9a79w97")))) (build-system python-build-system) (arguments ;; The tests attempt to access external web servers, so we cannot run them. '(#:tests? #f)) (propagated-inputs - (list python-colorama python-pygments python-requests - python-requests-toolbelt)) + (list python-colorama + python-pygments + python-requests + python-requests-toolbelt + python-pysocks + python-charset-normalizer + python-defusedxml + python-multidict)) (home-page "https://httpie.io") (synopsis "cURL-like tool for humans") (description -- cgit 1.4.1 From c9c8d75f977d5a8ce8e5969a46e210a5c8b6244c Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 11 Jan 2022 11:28:57 +0100 Subject: gnu: Add python-pyowm. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-web.scm (python-pyowm): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-web.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 6a3fc27353..408d7f6571 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5514,6 +5514,24 @@ imported Python files in sys.modules as well as custom paths. When files are changed the process is restarted.") (license license:expat))) +(define-public python-pyowm + (package + (name "python-pyowm") + (version "3.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyowm" version)) + (sha256 + (base32 "1pm8w6phr4m3xayndfndid366vhf1fpvdgjsp2zicxarmgc0pm53")))) + (build-system python-build-system) + (propagated-inputs (list python-geojson python-pysocks python-requests)) + (home-page "https://github.com/csparpa/pyowm") + (synopsis "Python wrapper around OpenWeatherMap web APIs") + (description + "This package provides a Python wrapper around OpenWeatherMap web APIs.") + (license license:expat))) + (define-public python-pyramid (package (name "python-pyramid") -- cgit 1.4.1 From 28e40fc369464ed12c519e76c9e36320b4d3c460 Mon Sep 17 00:00:00 2001 From: kiasoc5 Date: Mon, 7 Feb 2022 10:15:06 -0500 Subject: gnu: python-flask-babel: Update to 2.0.0. * gnu/packages/python-web.scm (python-flask-babel): Update to 2.0.0. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-web.scm | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 408d7f6571..8c638ce439 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1112,21 +1112,15 @@ support for merging, minifying and compiling CSS and Javascript files.") (define-public python-flask-babel (package (name "python-flask-babel") - (version "1.0.0") + (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Babel" version)) (sha256 (base32 - "0gmb165vkwv5v7dxsxa2i3zhafns0fh938m2zdcrv4d8z5l099yn")))) + "0z95v77vib5il8hphyh16n7i15a2gmc06i615vm346ifvdfg9ypr")))) (build-system python-build-system) - (arguments - '(#:phases (modify-phases %standard-phases - (replace 'check - (lambda _ - (with-directory-excursion "tests" - (invoke "python" "tests.py"))))))) (propagated-inputs (list python-flask python-babel python-jinja2 python-pytz)) (home-page "https://github.com/python-babel/flask-babel") -- cgit 1.4.1