GNU bug report logs - #55550
[PATCH 1/2] gnu: Add python-asyncgui.

Previous Next

Package: guix-patches;

Reported by: Ryan Prior <rprior <at> protonmail.com>

Date: Fri, 20 May 2022 22:07:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 55550 in the body.
You can then email your comments to 55550 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#55550; Package guix-patches. (Fri, 20 May 2022 22:07:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Ryan Prior <rprior <at> protonmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 20 May 2022 22:07:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Ryan Prior <rprior <at> protonmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH 1/2] gnu: Add python-asyncgui.
Date: Fri, 20 May 2022 22:06:17 +0000
* gnu/packages/python-xyz.scm (python-asyncgui): New symbol.
---
 gnu/packages/python-xyz.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index de1d408f3f..55857b86b2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18699,6 +18699,22 @@ (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 "async/await without event-loop")
+    (description "async/await without event-loop")
+    (license license:expat)))
+
 (define-public python2-kivy
   (package-with-python2 python-kivy))

--
2.36.0






Information forwarded to guix-patches <at> gnu.org:
bug#55550; Package guix-patches. (Fri, 20 May 2022 22:13:02 GMT) Full text and rfc822 format available.

Message #8 received at 55550 <at> debbugs.gnu.org (full text, mbox):

From: Ryan Prior <rprior <at> protonmail.com>
To: 55550 <at> debbugs.gnu.org
Subject: [PATCH 1/2] gnu: Add python-asyncgui.
Date: Fri, 20 May 2022 22:11:58 +0000
* gnu/packages/python-xyz.scm (python-asyncgui): New symbol.
---
 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index de1d408f3f..e64114cc9b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18699,6 +18699,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 python2-kivy
   (package-with-python2 python-kivy))

--
2.36.0






Information forwarded to guix-patches <at> gnu.org:
bug#55550; Package guix-patches. (Fri, 20 May 2022 22:13:02 GMT) Full text and rfc822 format available.

Message #11 received at 55550 <at> debbugs.gnu.org (full text, mbox):

From: Ryan Prior <rprior <at> protonmail.com>
To: 55550 <at> debbugs.gnu.org
Subject: [PATCH 2/2] gnu: Add python-asynckivy.
Date: Fri, 20 May 2022 22:12:17 +0000
* gnu/packages/python-xyz.scm (python-asynckivy): New symbol.
---
 gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e64114cc9b..cb6b79fbda 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18699,6 +18699,33 @@ (define-public python-kivymd
 Design spec without sacrificing ease of use or application performance.")
     (license license:expat)))

+(define-public python-asynckivy
+  (package
+    (name "python-asynckivy")
+    (version "0.5.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (pypi-uri "asynckivy" version))
+       (sha256
+        (base32 "0ivjvch8yn3k1ybfp7c1nm8mhc0ymg7d04mq54lly7yjvg0jvcni"))))
+    (build-system python-build-system)
+    (arguments
+       `(#:phases
+         (modify-phases %standard-phases
+           (add-before 'check 'set-home
+             (lambda _
+               ;; 'kivy/__init__.py' wants to create $HOME/.kivy.
+               (setenv "HOME" (getcwd)))))))
+    (propagated-inputs (list python-kivy python-asyncgui))
+    (home-page "https://github.com/gottadiveintopython/asynckivy")
+    (synopsis "Async library for Kivy")
+    (description
+     "This package provides async versions of Kivy functions to avoid the
+callback-heavy mode of interaction typical in some Kivy applications.")
+    (license license:expat)))
+
 (define-public python-asyncgui
   (package
     (name "python-asyncgui")
--
2.36.0






Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Fri, 24 Jun 2022 21:03:01 GMT) Full text and rfc822 format available.

Notification sent to Ryan Prior <rprior <at> protonmail.com>:
bug acknowledged by developer. (Fri, 24 Jun 2022 21:03:01 GMT) Full text and rfc822 format available.

Message #16 received at 55550-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Ryan Prior <rprior <at> protonmail.com>
Cc: 55550-done <at> debbugs.gnu.org
Subject: Re: bug#55550: [PATCH 1/2] gnu: Add python-asyncgui.
Date: Fri, 24 Jun 2022 23:02:29 +0200
Hi,

Ryan Prior <rprior <at> protonmail.com> skribis:

> * gnu/packages/python-xyz.scm (python-asyncgui): New symbol.

[...]

> * gnu/packages/python-xyz.scm (python-asynckivy): New symbol.

Applied, thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 23 Jul 2022 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 278 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.