diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-06 19:12:18 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-06 20:04:55 +0100 |
| commit | aaa898ecb8c4b9310d9d1b2f8be4a93f9550b331 (patch) | |
| tree | ec9878c47647680d2b9fdbe834ceef8fb9ab0e9b /gnu/packages/python-xyz.scm | |
| parent | c17e70a3e92db05a9eb97afe7b12239d0621867a (diff) | |
gnu: python-asyncgui: Update to 0.8.0.
* gnu/packages/python-xyz.scm (python-asyncgui): Update to 0.8.0.
[source]: Switch to git-fetch containing tests.
[build-system]: Switch to pyproejct.
[native-inputs]: Add python-poetry-core and python-pytest.
Change-Id: I56830e39e99830bceae60f2f3b9afcf70bf00093
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 574a374de0..87398fe6cd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24820,18 +24820,25 @@ callback-heavy mode of interaction typical in some Kivy applications.") (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) + (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/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.") + (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 |
