From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:59694) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gsICV-0006mN-CI for guix-patches@gnu.org; Fri, 08 Feb 2019 21:17:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gsICU-000168-Ie for guix-patches@gnu.org; Fri, 08 Feb 2019 21:17:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:41056) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gsICU-000161-Fv for guix-patches@gnu.org; Fri, 08 Feb 2019 21:17:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gsICU-00084O-7K for guix-patches@gnu.org; Fri, 08 Feb 2019 21:17:02 -0500 Subject: [bug#34396] [PATCH] gnu: Add python-pymsgbox. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:59574) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gsIBr-0006UV-U6 for guix-patches@gnu.org; Fri, 08 Feb 2019 21:16:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gsIBq-0000m2-T4 for guix-patches@gnu.org; Fri, 08 Feb 2019 21:16:23 -0500 Received: from cascadia.aikidev.net ([2600:3c01:e000:267:0:a171:de7:c]:36738) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gsIBq-0000ks-NQ for guix-patches@gnu.org; Fri, 08 Feb 2019 21:16:22 -0500 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100e]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 34AE71AAC0 for ; Fri, 8 Feb 2019 18:16:17 -0800 (PST) From: Vagrant Cascadian Date: Fri, 08 Feb 2019 18:16:11 -0800 Message-ID: <87mun5vh90.fsf@ponder> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" 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: 34396@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * gnu/packages/python-xyz.scm (python-pymsgbox): New variable. =2D-- gnu/packages/python-xyz.scm | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 14a80b920e..086eb3af26 100644 =2D-- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1938,6 +1938,44 @@ easier to build concurrent applications.") (define-public python2-pykka (package-with-python2 python-pykka)) =20 +(define-public python-pymsgbox + (package + (name "python-pymsgbox") + (version "1.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + ;; LICENSE.txt is not present on pypi + (url "https://github.com/asweigart/PyMsgBox") + (commit "55926b55f46caa969c5ddb87990ebea2737bd66f"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0zy7rjfpwlrd8b64j7jk2lb8m2npc21rnpwakpfvwgl4nxdy80rg")))) + (arguments + '(#:phases + (modify-phases %standard-phases + ;; Circular dependency to run tests: + ;; Tests need pyautogui, which depends on pymsgbox. + (delete 'check)))) + (build-system python-build-system) + (home-page + "https://github.com/asweigart/PyMsgBox") + (synopsis + "Python module for JavaScript-like message boxes") + (description + "PyMsgBox is A simple, cross-platform, pure Python module for +JavaScript-like message boxes. Types of dialog boxes include: +@enumerate +@item alert +@item confirm +@item prompt +@item password +@end enumerate +") + (license license:bsd-3))) + (define-public python-pympler (package (name "python-pympler") =2D-=20 2.20.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXF436wAKCRDcUY/If5cW qi1wAQDw0QdjLKpzcK8KYeGuvJ+8pIVya09xS9vDPHSkoPR+iwD+LzW+maV2hDAA 4ix5cPYhHs2gNPshpQQP5MurXsYzLQ8= =6FlB -----END PGP SIGNATURE----- --=-=-=--