Archived
1
0
Fork 0

gnu: hypercorn: Reformat with guix style.

* gnu/packages/python-web.scm (hypercorn): Reformat with guix style.
This commit is contained in:
Troy Figiel 2024-01-13 12:40:12 +01:00 committed by Sharlatan Hellseher
parent 68763a00a3
commit eb0f35e16d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2380,26 +2380,24 @@ RFC6455, regardless of your programming paradigm.")
(package (package
(name "hypercorn") (name "hypercorn")
(version "0.14.4") (version "0.14.4")
(source (origin (source
(origin
(method git-fetch) ;PyPI does not have tests (method git-fetch) ;PyPI does not have tests
(uri (git-reference (uri (git-reference
(url "https://github.com/pgjones/hypercorn") (url "https://github.com/pgjones/hypercorn")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0zyf5b8959sd12ycmqzvsb8746i3gn76rz55gxvix5cwj672m7yx"))))
"0zyf5b8959sd12ycmqzvsb8746i3gn76rz55gxvix5cwj672m7yx"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
;; Propagate because Hypercorn also exposes functionality over a module. ;; Propagate because Hypercorn also exposes functionality over a module.
(propagated-inputs (propagated-inputs (list python-exceptiongroup
(list python-exceptiongroup
python-h11 python-h11
python-h2 python-h2
python-priority python-priority
python-tomli python-tomli
python-wsproto)) python-wsproto))
(native-inputs (native-inputs (list python-hypothesis
(list python-hypothesis
python-poetry-core python-poetry-core
python-pytest python-pytest
python-pytest-asyncio python-pytest-asyncio