mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-asyncgui: Move to python-graphics.
* gnu/packages/python-xyz.scm (python-asyncgui): Move from here ... * gnu/packages/python-graphics.scm: ... to here. Change-Id: Id784934c8bdcf46d148792259efdbd1d9708a641
This commit is contained in:
parent
4883841fc6
commit
42f7d1c9ae
2 changed files with 24 additions and 24 deletions
|
@ -58,6 +58,30 @@
|
|||
;;;
|
||||
;;; Code:
|
||||
|
||||
(define-public python-asyncgui
|
||||
(package
|
||||
(name "python-asyncgui")
|
||||
(version "0.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch) ; no tests in PyPI release
|
||||
(uri (git-reference
|
||||
(url "https://github.com/asyncgui/asyncgui")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1b074msb580wify2wag3swm3s21x23kckxpw974y6dibsmrfr5n3"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-poetry-core
|
||||
python-pytest))
|
||||
(home-page "https://github.com/asyncgui/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-asynckivy
|
||||
(package
|
||||
(name "python-asynckivy")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue