From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50481) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jFkzQ-0003BT-AX for guix-patches@gnu.org; Sat, 21 Mar 2020 16:45:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jFkzP-0002on-0J for guix-patches@gnu.org; Sat, 21 Mar 2020 16:45:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42286) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jFkzO-0002nZ-RC for guix-patches@gnu.org; Sat, 21 Mar 2020 16:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jFkzN-0005jx-QA for guix-patches@gnu.org; Sat, 21 Mar 2020 16:45:01 -0400 Subject: [bug#40177] [PATCH] Add Pyzo Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:50452) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jFkz8-0002xB-9m for guix-patches@gnu.org; Sat, 21 Mar 2020 16:44:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jFkz6-0002kT-9B for guix-patches@gnu.org; Sat, 21 Mar 2020 16:44:45 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:52057) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jFkz6-0002jO-1A for guix-patches@gnu.org; Sat, 21 Mar 2020 16:44:44 -0400 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id E2BF820002 for ; Sat, 21 Mar 2020 20:44:38 +0000 (UTC) From: Nicolas Goaziou Date: Sat, 21 Mar 2020 21:44:37 +0100 Message-ID: <8736a18mkq.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40177@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, The following patch adds Pyzo, a Python IDE. Feedback welcome. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-pyzo.patch Content-Description: Add Pyzo >From b1946b7d23b99f89550ef35173f51c76a51038b4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 21 Mar 2020 19:13:07 +0100 Subject: [PATCH] gnu: Add pyzo. * gnu/packages/python-xyz.scm (pyzo): New variable. --- gnu/packages/python-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d0da9b36c3..09a1a5534d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18358,3 +18358,42 @@ sequences.") (define-public python2-fuzzywuzzy (package-with-python2 python-fuzzywuzzy)) + +(define-public pyzo + (package + (name "pyzo") + (version "4.10.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyzo" version)) + (sha256 + (base32 "1zplxcb78qy8qibifmnsx5i9gnlfmw9n6nr4yflsabpxw57mx4m1")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'check 'fix-home-directory + (lambda _ + ;; Tests fail with "Permission denied: + ;; '/homeless-shelter'". + (setenv "HOME" "/tmp") + #t))) + ;; Tests fail with "Uncaught Python exception: invalid literal + ;; for int() with base 10: 'test'". + #:tests? #f)) + (propagated-inputs + `(("python-pyqt" ,python-pyqt))) + (home-page "https://pyzo.org") + (synopsis + "Python IDE for scientific computing") + (description + "Pyzo is a Python IDE focused on interactivity and introspection, +which makes it very suitable for scientific computing. Its practical +design is aimed at simplicity and efficiency. + +It consists of two main components, the editor and the shell, and uses +a set of pluggable tools to help the programmer in various ways. Some +example tools are source structure, project manager, interactive help, +workspace...") + (license license:bsd-2))) -- 2.25.1 --=-=-=--