From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58847) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jAb8R-0000LX-V4 for guix-patches@gnu.org; Sat, 07 Mar 2020 10:13:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jAb8Q-0006l3-Rr for guix-patches@gnu.org; Sat, 07 Mar 2020 10:13:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:41399) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jAb8Q-0006kt-Ob for guix-patches@gnu.org; Sat, 07 Mar 2020 10:13:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jAb8Q-0005SS-Kw for guix-patches@gnu.org; Sat, 07 Mar 2020 10:13:02 -0500 Subject: [bug#39292] [PATCH 02/10] gnu: Add python-easygui Resent-Message-ID: From: Sebastian Schott Date: Sat, 7 Mar 2020 16:11:38 +0100 Message-Id: <20200307151146.2581-2-sschott@mailbox.org> In-Reply-To: <20200307151146.2581-1-sschott@mailbox.org> References: <20200307151146.2581-1-sschott@mailbox.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39292@debbugs.gnu.org Cc: Sebastian Schott * gnu/packages/python-xyz.scm (python-easygui): New variable. --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c1f1c7fa0e..17581c9304 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -171,6 +171,27 @@ #:use-module (srfi srfi-1) #:use-module (srfi srfi-26)) +(define-public python-easygui + (package + (name "python-easygui") + (version "0.98.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "easygui" version)) + (sha256 + (base32 + "1zmvmwgxyzvm83818skhn8b4wrci4kmnixaax8q3ia5cn7xrmj6v")))) + (build-system python-build-system) + (propagated-inputs + `(("python-tkinter" ,python "tk"))) + (home-page "https://github.com/robertlugg/easygui") + (synopsis "GUI programming module for Python") + (description "EasyGUI is a module for very simple, very easy GUI +programming in Python. EasyGUI is different from other GUI generators in that +EasyGUI is NOT event-driven. Instead, all GUI interactions are invoked by +simple function calls.") + (license license:bsd-3))) + (define-public python-pymediainfo (package (name "python-pymediainfo") -- 2.24.0