From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:45984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gtgBo-0006Ai-UQ for guix-patches@gnu.org; Tue, 12 Feb 2019 17:06:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gtgBn-00037i-D1 for guix-patches@gnu.org; Tue, 12 Feb 2019 17:06:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46031) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gtgBn-00036v-7L for guix-patches@gnu.org; Tue, 12 Feb 2019 17:06:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gtgBm-0003hT-Or for guix-patches@gnu.org; Tue, 12 Feb 2019 17:06:02 -0500 Subject: bug#34380: [PATCH 2/5] gnu: Add python-language-server. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87bm3msyyq.fsf@posteo.net> Date: Tue, 12 Feb 2019 23:05:19 +0100 In-Reply-To: <87bm3msyyq.fsf@posteo.net> (Brett Gilio's message of "Thu, 07 Feb 2019 22:09:33 -0600") Message-ID: <878sykhdcw.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: Brett Gilio Cc: 34380-done@debbugs.gnu.org --=-=-= Content-Type: text/plain Brett Gilio skribis: >>>From 915bd232185ebcab96d96dc400ee3f010e691048 Mon Sep 17 00:00:00 2001 > From: Brett Gilio > Date: Thu, 7 Feb 2019 22:03:42 -0600 > Subject: [PATCH 2/5] gnu: Add python-language-server. > > * gnu/packages/python-xyz.scm (python-language-server): New variable. Applied with the changes below, thanks! --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e8ff525c7e..4218515961 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2592,7 +2592,7 @@ Language (TOML) configuration files.") (build-system python-build-system) (propagated-inputs `(("python-pluggy" ,python-pluggy) - ("python-jsonrps-server" ,python-jsonrpc-server) + ("python-jsonrpc-server" ,python-jsonrpc-server) ("python-jedi" ,python-jedi) ("python-yapf" ,python-yapf) ("python-pyflakes" ,python-pyflakes) @@ -2601,12 +2601,13 @@ Language (TOML) configuration files.") ("python-mccabe" ,python-mccabe) ("python-rope" ,python-rope) ("python-autopep8" ,python-autopep8))) - (home-page - "https://github.com/palantir/python-language-server") - (synopsis - "Python Language Server for the Language Server Protocol") + (home-page "https://github.com/palantir/python-language-server") + (synopsis "Python implementation of the Language Server Protocol") (description - "The Python Language Server (pyls) is an implementation of the Python 3 language specification for the LSP. This tool is used in many text-editing environments to provide a complete and integrated feature-set for programming Python effectively.") + "The Python Language Server (pyls) is an implementation of the Python 3 +language specification for the Language Server Protocol (LSP). This tool is +used in text editing environments to provide a complete and integrated +feature-set for programming Python effectively.") (license license:expat))) (define-public python-black --=-=-=--