diff options
author | Sebastian Schott <sschott@mailbox.org> | 2020-03-07 16:11:38 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-03-15 16:41:43 +0000 |
commit | 1b9c1fdb426dc0474482c2970faf219c85d5475a (patch) | |
tree | 4062b1dea4bf87d0d294ccd9bf5446fdc9af0254 /gnu | |
parent | 244a527d445c48bc7a1d7f78abc9ebdccb0d7bed (diff) | |
download | patches-1b9c1fdb426dc0474482c2970faf219c85d5475a.tar patches-1b9c1fdb426dc0474482c2970faf219c85d5475a.tar.gz |
gnu: Add python-easygui
* gnu/packages/python-xyz.scm (python-easygui): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 419b2a26fc..0a590ab2cf 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -170,6 +170,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") |