mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add python-asyncinject.
* gnu/packages/python-xyz.scm (python-asyncinject): New variable. Change-Id: I2647e8340bca2efabc222d19155d330b1a5ff16f
This commit is contained in:
parent
186aa138a6
commit
e8f68ea334
1 changed files with 20 additions and 0 deletions
|
@ -21201,6 +21201,26 @@ (define-public python-kivymd
|
|||
Design spec without sacrificing ease of use or application performance.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-asyncinject
|
||||
(package
|
||||
(name "python-asyncinject")
|
||||
(version "0.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "asyncinject" version))
|
||||
(sha256
|
||||
(base32 "0x57idiy19lzyn32klgm06r223z8gr2aqqk91gysbshq7jg8g3pf"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs (list python-pytest python-pytest-asyncio))
|
||||
(home-page "https://github.com/simonw/asyncinject")
|
||||
(synopsis
|
||||
"Run async workflows using pytest-fixtures-style dependency injection")
|
||||
(description
|
||||
"This package lets you run asynchronous workflows using
|
||||
pytest-fixtures-style dependency injection.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-asynckivy
|
||||
(package
|
||||
(name "python-asynckivy")
|
||||
|
|
Loading…
Reference in a new issue