me
/
guix
Archived
1
0
Fork 0

gnu: Add python-aiosignal.

* gnu/packages/python-web.scm (python-aiosignal): New variable.
Maxim Cournoyer 2022-01-17 16:42:01 -05:00
parent dece47497c
commit 2bf53290df
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 27 additions and 0 deletions

View File

@ -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")