From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58149) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cx9bh-0005bi-RM for guix-patches@gnu.org; Sun, 09 Apr 2017 05:58:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cx9bf-0001Ed-FT for guix-patches@gnu.org; Sun, 09 Apr 2017 05:58:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40730) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cx9bf-0001ET-Cn for guix-patches@gnu.org; Sun, 09 Apr 2017 05:58:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cx9bf-0006HD-62 for guix-patches@gnu.org; Sun, 09 Apr 2017 05:58:03 -0400 Subject: bug#26414: [PATCH 2/3] gnu: Add python-pyatspi. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57937) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cx9af-0005XY-0o for guix-patches@gnu.org; Sun, 09 Apr 2017 05:57:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cx9ae-000101-8D for guix-patches@gnu.org; Sun, 09 Apr 2017 05:57:01 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:55744 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cx9ae-0000yO-0f for guix-patches@gnu.org; Sun, 09 Apr 2017 05:57:00 -0400 From: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 9 Apr 2017 17:49:41 +0800 Message-Id: <20170409094942.20144-2-iyzsong@member.fsf.org> In-Reply-To: <20170409094942.20144-1-iyzsong@member.fsf.org> References: <20170409094942.20144-1-iyzsong@member.fsf.org> 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: 26414@debbugs.gnu.org Cc: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= * gnu/packages/gnome.scm (python-pyatspi): New package. --- gnu/packages/gnome.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index b94c36636..bf53835a0 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5997,3 +5997,31 @@ for process dependencies, icons for processes, the ability to hide processes, graphical time histories of CPU/memory/swap usage and the ability to kill/reinice processes.") (license license:gpl2+))) + +(define-public python-pyatspi + (package + (name "python-pyatspi") + (version "2.24.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://gnome/sources/pyatspi/" + (version-major+minor version) + "/pyatspi-" version ".tar.xz")) + (sha256 + (base32 + "14m6y27ziqc9f6339gjz49mlsk6mrsyg4bkj055cdzc7sfjlgvz7")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("python" ,python) + ("python-pygobject" ,python-pygobject))) + (synopsis "Python client bindings for D-Bus AT-SPI") + (home-page "http://www.linuxfoundation.org/en/Accessibility\ +/ATK/AT-SPI/AT-SPI_on_D-Bus") + (description + "This package includes a python client library for the AT-SPI D-Bus +accessibility infrastructure.") + (license license:lgpl2.0) + (properties '((upstream-name . "pyatspi"))))) -- 2.12.2