diff options
author | Ryan Prior <rprior@protonmail.com> | 2022-05-20 22:11:58 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-24 23:18:20 +0200 |
commit | 2d8c68c59046c292efb2b1699c66bac79ed5dc4c (patch) | |
tree | 2dc4a88bcc6324abac7511e50336f5b339af2a5d | |
parent | 4a72180585f63fb417cdf4b9e89fe7dea4e70e05 (diff) |
gnu: Add python-asyncgui.
* gnu/packages/python-xyz.scm (python-asyncgui): New symbol.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/python-xyz.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5ca355b1a7..386f8003e3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17502,6 +17502,23 @@ multitouch applications.") 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") |