GNU bug report logs - #35973
[PATCH 41/47] gnu: Add python-pyuserinput.

Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.

Package: guix-patches; Reported by: "h.nasajpour" <h.nasajpour@HIDDEN>; Keywords: patch; dated Wed, 29 May 2019 00:35:06 UTC; Maintainer for guix-patches is guix-patches@HIDDEN.

Message received at submit <at> debbugs.gnu.org:


Received: (at submit) by debbugs.gnu.org; 29 May 2019 00:34:56 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Tue May 28 20:34:56 2019
Received: from localhost ([127.0.0.1]:57734 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1hVmYS-00064S-ES
	for submit <at> debbugs.gnu.org; Tue, 28 May 2019 20:34:56 -0400
Received: from eggs.gnu.org ([209.51.188.92]:54115)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <root@HIDDEN>) id 1hVmYQ-000648-P8
 for submit <at> debbugs.gnu.org; Tue, 28 May 2019 20:34:55 -0400
Received: from lists.gnu.org ([209.51.188.17]:35082)
 by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32)
 (Exim 4.71) (envelope-from <root@HIDDEN>)
 id 1hVmYL-0000IC-KR
 for submit <at> debbugs.gnu.org; Tue, 28 May 2019 20:34:49 -0400
Received: from eggs.gnu.org ([209.51.188.92]:40259)
 by lists.gnu.org with esmtp (Exim 4.71)
 (envelope-from <root@HIDDEN>) id 1hVmYK-0007DQ-LE
 for guix-patches@HIDDEN; Tue, 28 May 2019 20:34:49 -0400
X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org
X-Spam-Level: ****
X-Spam-Status: No, score=4.3 required=5.0 tests=BAYES_50,NO_DNS_FOR_FROM,
 RDNS_DYNAMIC,RECEIVED_FROM_WINDOWS_HOST autolearn=disabled version=3.3.2
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
 (envelope-from <root@HIDDEN>) id 1hVmYJ-0000Gp-MU
 for guix-patches@HIDDEN; Tue, 28 May 2019 20:34:48 -0400
Received: from 37.59.236.227.rdns.hasaserver.com ([37.59.236.227]:55883
 helo=hamzeh-VirtualBox.Home) by eggs.gnu.org with esmtp (Exim 4.71)
 (envelope-from <root@HIDDEN>) id 1hVmYJ-0000GA-5p
 for guix-patches@HIDDEN; Tue, 28 May 2019 20:34:47 -0400
Received: by hamzeh-VirtualBox.Home (Postfix, from userid 0)
 id AEFDE1A154B; Wed, 29 May 2019 05:04:46 +0430 (+0430)
From: "h.nasajpour" <h.nasajpour@HIDDEN>
To: guix-patches@HIDDEN
Subject: [PATCH 41/47] gnu: Add python-pyuserinput.
Date: Wed, 29 May 2019 05:04:45 +0430
Message-Id: <20190529003445.3057-1-h.nasajpour@HIDDEN>
X-Mailer: git-send-email 2.17.1
In-Reply-To: <h.nasajpour@HIDDEN>
References: <h.nasajpour@HIDDEN>
X-detected-operating-system: by eggs.gnu.org: Windows NT kernel [generic]
X-Received-From: 37.59.236.227
X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x
X-Spam-Score: -1.9 (-)
X-Debbugs-Envelope-To: submit
Cc: "h.nasajpour" <h.nasajpour@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -2.9 (--)

* gnu/packages/python-xyz.scm (python-pyuserinput): New variable
---
 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 b9bfc1be14..0c06833cec 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15457,3 +15457,20 @@ by Igor Pavlov.")
     (description
      "Various helpers to pass data to untrusted environments and back.")
     (license license:bsd-3)))
+
+(define-public python-pyuserinput
+  (package
+  (name "python-pyuserinput")
+    (version "0.1.11")
+    (source (origin
+      (method url-fetch)
+      (uri (pypi-uri "PyUserInput" version))
+      (sha256 (base32 "0azvlzfczrxhpxi15r37cbqkbbn5ip5y28bj5kmywh7pdk85wsq0"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f))
+    (home-page "https://github.com/PyUserInput/PyUserInput")
+    (synopsis "A simple, cross-platform module for mouse and keyboard control")
+    (description
+     "A module for cross-platform control of the mouse and keyboard in python that is simple to use.")
+    (license license:lgpl3)))
-- 
2.17.1





Acknowledgement sent to "h.nasajpour" <h.nasajpour@HIDDEN>:
New bug report received and forwarded. Copy sent to guix-patches@HIDDEN. Full text available.
Report forwarded to guix-patches@HIDDEN:
bug#35973; Package guix-patches. Full text available.
Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.
Last modified: Mon, 25 Nov 2019 12:00:02 UTC

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