From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49438) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fD81K-0005vj-9d for guix-patches@gnu.org; Mon, 30 Apr 2018 08:35:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fD81G-0001F4-B4 for guix-patches@gnu.org; Mon, 30 Apr 2018 08:35:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35620) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fD81G-0001Ex-7F for guix-patches@gnu.org; Mon, 30 Apr 2018 08:35:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fD81G-0001UV-2I for guix-patches@gnu.org; Mon, 30 Apr 2018 08:35:02 -0400 Subject: [bug#31282] [PATCH 1/2] gnu: Add python-parso. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) In-Reply-To: (Fis Trivial's message of "Fri, 27 Apr 2018 06:58:04 +0000") References: Date: Mon, 30 Apr 2018 14:34:31 +0200 Message-ID: <87efiwzxd4.fsf@gnu.org> 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: Fis Trivial Cc: 31282@debbugs.gnu.org --=-=-= Content-Type: text/plain Fis Trivial skribis: > * gnu/packages/python.scm (python-parso, python2-parso): New variables. Applied with the changes below, thanks! Ludo'. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 7fe27bd17..f23deb57e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13160,12 +13160,11 @@ time-based (TOTP) passwords.") (native-inputs `(("python-pytest" ,python-pytest))) (build-system python-build-system) - (home-page - "https://github.com/davidhalter/parso") + (home-page "https://github.com/davidhalter/parso") (synopsis "Python Parser") (description "Parso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). -Parso is also able to list multiple syntax errors in your python file.") +Parso is also able to list multiple syntax errors in your Python file.") (license license:expat))) (define-public python2-parso --=-=-=--