From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45494) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOztQ-00082K-Sf for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOztP-0005u8-RF for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54158) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOztP-0005t8-Dh for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOztP-0000eX-Ay for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:03 -0400 Subject: [bug#40543] [PATCH v3 2/5] gnu: python-pyatspi: Propagate python-pygobject. Resent-Message-ID: From: Christopher Baines Date: Thu, 16 Apr 2020 09:28:49 +0100 Message-Id: <20200416082852.4319-2-mail@cbaines.net> In-Reply-To: <20200416082852.4319-1-mail@cbaines.net> References: <20200415174952.9368-1-mail@cbaines.net> <20200416082852.4319-1-mail@cbaines.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 40543@debbugs.gnu.org As python-pygobject is required at runtime. * gnu/packages/gnome.scm (python-pyatspi)[inputs]: Move python-pygobject to… [propagated-inputs]: …here. (python2-pyatspi)[inputs]: Move python2-pygobject to… [propagated-inputs]: …here. --- gnu/packages/gnome.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4710bd1349..e7b36fff1d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8763,8 +8763,9 @@ from gi.repository import Atspi")) (native-inputs `(("pkg-config" ,pkg-config))) (inputs - `(("python" ,python) - ("python-pygobject" ,python-pygobject))) + `(("python" ,python))) + (propagated-inputs + `(("python-pygobject" ,python-pygobject))) (synopsis "Python client bindings for D-Bus AT-SPI") (home-page "https://wiki.linuxfoundation.org/accessibility\ /atk/at-spi/at-spi_on_d-bus") @@ -8779,8 +8780,9 @@ accessibility infrastructure.") (inherit python-pyatspi) (name "python2-pyatspi") (inputs - `(("python" ,python-2) - ("python-pygobject" ,python2-pygobject))))) + `(("python" ,python-2))) + (propagated-inputs + `(("python-pygobject" ,python2-pygobject))))) (define-public orca (package -- 2.26.0