From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: Re: Python: Zlib support Date: Tue, 02 Apr 2013 20:25:01 +0200 Message-ID: <515B227D.7020905@gmail.com> References: <87li91huk1.fsf@karetnikov.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44925) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UN65b-0002ap-B9 for bug-guix@gnu.org; Tue, 02 Apr 2013 14:37:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UN65T-0000oL-Vt for bug-guix@gnu.org; Tue, 02 Apr 2013 14:37:47 -0400 Received: from mail-we0-x230.google.com ([2a00:1450:400c:c03::230]:62352) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UN65T-0000nw-QB for bug-guix@gnu.org; Tue, 02 Apr 2013 14:37:39 -0400 Received: by mail-we0-f176.google.com with SMTP id s43so556885wey.21 for ; Tue, 02 Apr 2013 11:37:38 -0700 (PDT) In-Reply-To: <87li91huk1.fsf@karetnikov.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Nikita Karetnikov Cc: bug-guix@gnu.org On 04/02/2013 04:32 PM, Nikita Karetnikov wrote: > I'm trying to build Bazaar using 'python-build-system'. Bazaar requires > Zlib (from Python) and I fail to find out how to build Python with Zlib. > > It should be possible to import it like so: > > # python > >>> import zlib > This works for me: $ which python /home/cyril/.guix-profile/bin/python $ python -c "import zlib"; echo $? 0 Cyril.