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(+) 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 v1.2.3