[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/13: gnu: Add python-aiohttp.
From: |
Nicolas Goaziou |
Subject: |
12/13: gnu: Add python-aiohttp. |
Date: |
Fri, 11 May 2018 05:54:59 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 321ba5683bc61711c2464aee2bdc24fda878b1fc
Author: Nicolas Goaziou <address@hidden>
Date: Mon Apr 23 00:20:58 2018 +0200
gnu: Add python-aiohttp.
* gnu/packages/python-web.scm (python-aiohttp): New variable.
---
gnu/packages/python-web.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index dc571e1..8ebae2e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -61,6 +61,47 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (srfi srfi-1))
+(define-public python-aiohttp
+ (package
+ (name "python-aiohttp")
+ (version "3.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "aiohttp" version))
+ (sha256
+ (base32
+ "1b888lggmyf2d08rfayq9khszzc0pav1z70ssc0b4d9kkr4g1klz"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ;FIXME: 2 errors, 2084 passed
+ (native-inputs
+ `(("python-async-generator" ,python-async-generator)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-capturelog" ,python-pytest-capturelog)
+ ("python-pytest-mock" ,python-pytest-mock)))
+ (propagated-inputs
+ `(("python-aiodns" ,python-aiodns)
+ ("python-async-timeout" ,python-async-timeout)
+ ("python-attrs" ,python-attrs)
+ ("python-chardet" ,python-chardet)
+ ("python-idna-ssl" ,python-idna-ssl)
+ ("python-multidict" ,python-multidict)
+ ("python-yarl" ,python-yarl)))
+ (home-page "https://github.com/aio-libs/aiohttp/")
+ (synopsis "Async HTTP client/server framework (asyncio)")
+ (description "@code{aiohttp} is an asynchronous HTTP client/server
+framework.
+
+Its main features are:
address@hidden
address@hidden Supports both client and server side of HTTP protocol.
address@hidden Supports both client and server Web-Sockets out-of-the-box
without the
+Callback Hell.
address@hidden Web-server has middlewares and pluggable routing.
address@hidden itemize")
+ (license license:asl2.0)))
+
(define-public python-aiodns
(package
(name "python-aiodns")
- branch master updated (ef6a484 -> cb91f6a), Nicolas Goaziou, 2018/05/11
- 01/13: gnu: python-attrs: Update to 17.4.0., Nicolas Goaziou, 2018/05/11
- 03/13: gnu: Add python-pycares., Nicolas Goaziou, 2018/05/11
- 04/13: gnu: Add python-async-timeout., Nicolas Goaziou, 2018/05/11
- 09/13: gnu: Add python-aiodns., Nicolas Goaziou, 2018/05/11
- 07/13: gnu: Add python-pylibscrypt., Nicolas Goaziou, 2018/05/11
- 08/13: gnu: Add python-multidict., Nicolas Goaziou, 2018/05/11
- 10/13: gnu: Add python-yarl., Nicolas Goaziou, 2018/05/11
- 11/13: gnu: Add python-libnacl., Nicolas Goaziou, 2018/05/11
- 12/13: gnu: Add python-aiohttp.,
Nicolas Goaziou <=
- 13/13: gnu: Add python-duniterpy., Nicolas Goaziou, 2018/05/11
- 06/13: gnu: Add python-base58., Nicolas Goaziou, 2018/05/11
- 02/13: gnu: Add python-async-generator., Nicolas Goaziou, 2018/05/11
- 05/13: gnu: Add python-idna-ssl., Nicolas Goaziou, 2018/05/11