From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ebNf4-0001o7-QW for guix-patches@gnu.org; Tue, 16 Jan 2018 04:36:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ebNez-0004GZ-Tt for guix-patches@gnu.org; Tue, 16 Jan 2018 04:36:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:50163) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ebNez-0004GP-QN for guix-patches@gnu.org; Tue, 16 Jan 2018 04:36:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ebNez-0006qO-Lg for guix-patches@gnu.org; Tue, 16 Jan 2018 04:36:01 -0500 Subject: [bug#30135] [PATCH] gnu: python-matplotlib: Fix import failure Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57349) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ebNe5-0001aF-QT for guix-patches@gnu.org; Tue, 16 Jan 2018 04:35:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ebNe0-0003U7-Tv for guix-patches@gnu.org; Tue, 16 Jan 2018 04:35:05 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:58097) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ebNe0-0003Nx-O7 for guix-patches@gnu.org; Tue, 16 Jan 2018 04:35:00 -0500 From: Konrad Hinsen Date: Mon, 15 Jan 2018 16:22:29 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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: 30135@debbugs.gnu.org * gnu/packages/python.scm (python-matplotlib)[propagated-inputs]: Add python-pyqt. --- gnu/packages/python.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0b582e6b7..0a7ca2e77 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3213,6 +3213,7 @@ convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc. ;; object. For this reason we need to import both libraries. ;; https://pythonhosted.org/cairocffi/cffi_api.html#converting-pycairo ("python-pycairo" ,python-pycairo) + ("python-pyqt" ,python-pyqt) ("python-cairocffi" ,python-cairocffi))) (inputs `(("libpng" ,libpng) @@ -3222,7 +3223,6 @@ convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc. ("glib" ,glib) ;; FIXME: Add backends when available. ;("python-wxpython" ,python-wxpython) - ("python-pyqt" ,python-pyqt) ("tcl" ,tcl) ("tk" ,tk))) (native-inputs -- 2.14.3 (Apple Git-98)