[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/13: gnu: Add python-async-generator.
From: |
Nicolas Goaziou |
Subject: |
02/13: gnu: Add python-async-generator. |
Date: |
Fri, 11 May 2018 05:54:57 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit bbc8c36fce6f83f3112405d5bec143eb2342b38c
Author: Nicolas Goaziou <address@hidden>
Date: Sun Apr 22 23:59:57 2018 +0200
gnu: Add python-async-generator.
* gnu/packages/python.scm (python-async-generator): New variable.
---
gnu/packages/python.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 10d3d59..925976a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -51,6 +51,7 @@
;;; Copyright © 2018 Mathieu Lirzin <address@hidden>
;;; Copyright © 2018 Adam Massmann <address@hidden>
;;; Copyright © 2016, 2018 Tomáš Čech <address@hidden>
+;;; Copyright © 2018 Nicolas Goaziou <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -13215,3 +13216,25 @@ Parso is also able to list multiple syntax errors in
your Python file.")
(define-public python2-parso
(package-with-python2 python-parso))
+
+(define-public python-async-generator
+ (package
+ (name "python-async-generator")
+ (version "1.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "async_generator" version))
+ (sha256
+ (base32
+ "0wc3hidz1q85cja93k5pzybn0fprfnqyrv4qlkdqdzklc5f4dmdp"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (home-page "https://github.com/python-trio/async_generator")
+ (synopsis "Async generators and context managers for Python 3.5+")
+ (description "@code{async_generator} back-ports Python 3.6's native async
+generators and Python 3.7's context managers into Python 3.5.")
+ ;; Dual licensed.
+ (license (list license:expat license:asl2.0))))
+
- 03/13: gnu: Add python-pycares., (continued)
- 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, 2018/05/11
- 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 <=
- 05/13: gnu: Add python-idna-ssl., Nicolas Goaziou, 2018/05/11