mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-asyncgui.
* gnu/packages/python-xyz.scm (python-asyncgui): New symbol. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
4a72180585
commit
2d8c68c590
1 changed files with 17 additions and 0 deletions
|
@ -17502,6 +17502,23 @@ (define-public python-kivymd
|
|||
Design spec without sacrificing ease of use or application performance.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-asyncgui
|
||||
(package
|
||||
(name "python-asyncgui")
|
||||
(version "0.5.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "asyncgui" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0614130afg2qc1qq4p82piskvvx6lpjl4nlsakbjzdyd78xywnb7"))))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://github.com/gottadiveintopython/asyncgui")
|
||||
(synopsis "Enables async/await without an event loop")
|
||||
(description "This package provides support for async/await applications
|
||||
without requiring an event loop, useful for creative responsive GUIs.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-binaryornot
|
||||
(package
|
||||
(name "python-binaryornot")
|
||||
|
|
Loading…
Reference in a new issue