mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add python-h2.
* gnu/packages/python-web.scm (python-h2): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
22d112400f
commit
f8380178d5
1 changed files with 33 additions and 0 deletions
|
@ -527,6 +527,39 @@ into HTTP/2 frames.")
|
|||
for use in Python programs that implement HTTP/2.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-h2
|
||||
(package
|
||||
(name "python-h2")
|
||||
(version "3.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "h2" version))
|
||||
(sha256
|
||||
(base32 "051gg30aca26rdxsmr9svwqm06pdz9bv21ch4n0lgi7jsvml2pw7"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(add-installed-pythonpath inputs outputs)
|
||||
(invoke "pytest" "-vv" "test"))))))
|
||||
(native-inputs
|
||||
`(("python-pytest" ,python-pytest)))
|
||||
(propagated-inputs
|
||||
`(("python-hpack" ,python-hpack)
|
||||
("python-hyperframe" ,python-hyperframe)))
|
||||
(home-page "https://github.com/python-hyper/hyper-h2")
|
||||
(synopsis "HTTP/2 State-Machine based protocol implementation")
|
||||
(description
|
||||
"This module contains a pure-Python implementation of a HTTP/2 protocol
|
||||
stack. It does not provide a parsing layer, a network layer, or any rules
|
||||
about concurrency. Instead, it's a purely in-memory solution, defined in
|
||||
terms of data actions and HTTP/2 frames. This is one building block of a full
|
||||
Python HTTP implementation.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-sockjs-tornado
|
||||
(package
|
||||
(name "python-sockjs-tornado")
|
||||
|
|
Loading…
Reference in a new issue