From add37404d9ef23018df059ae0de76bd62d0a443a Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 5 Nov 2022 12:25:04 -0300 Subject: gnu: hypercorn: Update to 0.14.3. * gnu/packages/python-web.scm (hypercorn): Update to 0.14.3. [source]: Fetch from GitHub. [build-system]: Switch to pyproject-build-system. [arguments]: Don't override the 'check phase. [native-inputs]: Add python-poetry-core. --- gnu/packages/python-web.scm | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 765a07a20c..758cd9124c 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -37,7 +37,7 @@ ;;; Copyright © 2020 Holger Peters ;;; Copyright © 2020 Noisytoot ;;; Copyright © 2020 Edouard Klein -;;; Copyright © 2020, 2021, 2022 Vinicius Monego +;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego ;;; Copyright © 2020 Konrad Hinsen ;;; Copyright © 2020, 2022 Giacomo Leidi ;;; Copyright © 2021 Ekaitz Zarraga @@ -2059,22 +2059,17 @@ RFC6455, regardless of your programming paradigm.") (define-public hypercorn (package (name "hypercorn") - (version "0.11.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "Hypercorn" version)) - (sha256 - (base32 "16kai5d12f05jr89mj611zslxqri4cd7ixcgd6yhl211qlcyg8av")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs tests? #:allow-other-keys) - (when tests? - (add-installed-pythonpath inputs outputs) - (invoke "python" "-m" "pytest"))))))) + (version "0.14.3") + (source (origin + (method git-fetch) ;PyPI does not have tests + (uri (git-reference + (url "https://github.com/pgjones/hypercorn") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hkph0sdr94hxmrq1grnh842snm561sw4az5q6a3ba9hqnrl890h")))) + (build-system pyproject-build-system) ;; Propagate because Hypercorn also exposes functionality over a module. (propagated-inputs (list python-h11 @@ -2086,6 +2081,7 @@ RFC6455, regardless of your programming paradigm.") (native-inputs (list python-hypothesis python-mock + python-poetry-core python-pytest python-pytest-asyncio python-pytest-cov @@ -2096,8 +2092,8 @@ RFC6455, regardless of your programming paradigm.") (description "Hypercorn is an ASGI web server based on the sans-io hyper, h11, h2, and wsproto libraries and inspired by Gunicorn. It supports HTTP/1, HTTP/2, -WebSockets (over HTTP/1 and HTTP/2), ASGI/2, and ASGI/3 specifications. It can -utilise asyncio, uvloop, or trio worker types.") +WebSockets (over HTTP/1 and HTTP/2), ASGI/2, and ASGI/3 specifications. It +can utilise asyncio, uvloop, or trio worker types.") (license license:expat))) (define-public python-hypercorn -- cgit v1.2.3 eerinckx-Rice 2017-10-29import: cpan: Use HTTPS for home pages....Tobias Geerinckx-Rice 2017-10-28import: cpan: Add trailing "/" on home-page....Eric Bavier 2017-10-28import: cpan: Propagate imported dependencies....Eric Bavier 2017-09-14import: cpan: Adjust expected license in tests....Ludovic Courtès 2017-06-07import: cpan: Update CPAN importer to use MetaCPAN v1 API....James Richardson 2017-02-13tests: Adjust for 'http-fetch' change in (guix import json)....Ludovic Courtès 2016-12-18tests: Mock up http-fetch....Ricardo Wurmus 2016-12-18tests: Adjust cpan tests....Ricardo Wurmus 2016-11-10tests: Adjust 'url-fetch' mocks to TLS changes....Ludovic Courtès 2016-08-31tests: cpan: Fix mock urls....Eric Bavier 2016-07-03import: cpan: Use our mirrors for 'https' URLs....Alex Sassmannshausen 2016-04-03build: Add a Guile custom test driver using SRFI-64....Mathieu Lirzin 2016-03-06tests: Disable grafting by default for most tests....Ludovic Courtès