[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#41807] [PATCH 10/26] gnu: Add python-h11.
From: |
Giacomo Leidi |
Subject: |
[bug#41807] [PATCH 10/26] gnu: Add python-h11. |
Date: |
Thu, 11 Jun 2020 17:13:41 +0200 |
* gnu/packages/python-web.scm (python-h11): New variable.
---
gnu/packages/python-web.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 83333d5f1c..dcfe523912 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4096,3 +4096,30 @@ based on filters.")
NodeJS HTTP parser. It provides collection of framework independent HTTP
protocol utils.")
(license license:expat)))
+
+(define-public python-h11
+ (package
+ (name "python-h11")
+ (version "0.9.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "h11" version))
+ (sha256
+ (base32
+ "1qfad70h59hya21vrzz8dqyyaiqhac0anl2dx3s3k80gpskvrm1k"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (home-page "https://github.com/python-hyper/h11")
+ (synopsis
+ "Python implementation of HTTP/1.1")
+ (description
+ "@code{python-h11} is a little HTTP/1.1 library written from
+scratch in Python, heavily inspired by code{hyper-h2}.
+
+It's a \"bring-your-own-I/O\" library; @code{python-h11} contains no
+IO code whatsoever. This means you can hook @code{python-h11} up to
+your favorite network API: synchronous, threaded, asynchronous, or your
+own implementation of RFC 6214.")
+ (license license:expat)))
--
2.26.2
- [bug#41807] [PATCHES] Add python-sanic and dependencies., paul, 2020/06/11
- [bug#41807] [PATCH 01/26] gnu: Add python-outcome., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 03/26] gnu: Add python-contextvars., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 06/26] gnu: Add python-trustme., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 07/26] gnu: Add python-trio., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 08/26] gnu: Add python-httptools., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 13/26] gnu: Add python-h2., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 15/26] gnu: Add python-mypy-extensions., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 18/26] gnu: python-typing-extensions: Update to 3.7.4.2., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 10/26] gnu: Add python-h11.,
Giacomo Leidi <=
- [bug#41807] [PATCH 20/26] gnu: Add python-nbsphinx., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 21/26] gnu: Add python-dataclasses., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 04/26] gnu: Add python-curio., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 12/26] gnu: Add python-hyperframe., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 05/26] gnu: Add python-sniffio., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 09/26] gnu: Add python-aiofiles., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 14/26] gnu: Add python-hstspreload., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 16/26] gnu: Add python-flake8-pyi., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 17/26] gnu: Add python-typing-inspect., Giacomo Leidi, 2020/06/11
- [bug#41807] [PATCH 19/26] gnu: Add python-pyre-extensions., Giacomo Leidi, 2020/06/11