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:
Ryan Prior 2022-05-20 22:11:58 +00:00 committed by Ludovic Courtès
parent 4a72180585
commit 2d8c68c590
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

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