From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46976) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOmAm-00015q-R0 for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOmAl-0005Ga-Is for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53784) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOmAl-0005GW-Fr for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOmAl-0001M1-BV for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:03 -0400 Subject: [bug#40543] [PATCH v2 2/5] gnu: python-pyatspi: Propagate python-pygobject. Resent-Message-ID: From: Christopher Baines Date: Wed, 15 Apr 2020 18:49:49 +0100 Message-Id: <20200415174952.9368-2-mail@cbaines.net> In-Reply-To: <20200415174952.9368-1-mail@cbaines.net> References: <87wo6n726x.fsf@cbaines.net> <20200415174952.9368-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-pygobject)[inputs]: Move python-pygobject to… [propagated-inputs]: …here. (python2-pygobject)[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