[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/05: gnu: Add python-aiosignal.
From: |
guix-commits |
Subject: |
02/05: gnu: Add python-aiosignal. |
Date: |
Mon, 17 Jan 2022 22:28:05 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 2bf53290df8923ee9a9deeb3d4cb18cd4ff68ca1
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Jan 17 16:42:01 2022 -0500
gnu: Add python-aiosignal.
* gnu/packages/python-web.scm (python-aiosignal): 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 a73f0da35f..75126c5b40 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -193,6 +193,33 @@ implements @code{collections.abc.MutableSequence}. It can
be made immutable
by calling @code{FrozenList.freeze}.")
(license license:asl2.0)))
+(define-public python-aiosignal
+ (package
+ (name "python-aiosignal")
+ (version "1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "aiosignal" version))
+ (sha256
+ (base32 "1wkxbdgw07ay8yzx3pg1jcm46p3d21rfb5g4k17ysz3vdkdngvbq"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "tests")))))))
+ (propagated-inputs (list python-frozenlist))
+ (native-inputs (list python-pytest python-pytest-asyncio))
+ (home-page "https://github.com/aio-libs/aiosignal")
+ (synopsis "Callback manager for Python @code{asyncio} projects")
+ (description "This Python module provides @code{Signal}, an abstraction to
+register asynchronous callbacks. The @code{Signal} abstraction can be used
+for adding, removing and dropping callbacks.")
+ (license license:asl2.0)))
+
(define-public python-aiohttp
(package
(name "python-aiohttp")