GNU bug report logs - #34380
[PATCH 2/5] gnu: Add python-language-server.

Previous Next

Package: guix-patches;

Reported by: Brett Gilio <brettg <at> posteo.net>

Date: Fri, 8 Feb 2019 04:10:03 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 34380 in the body.
You can then email your comments to 34380 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#34380; Package guix-patches. (Fri, 08 Feb 2019 04:10:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Brett Gilio <brettg <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 08 Feb 2019 04:10:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Brett Gilio <brettg <at> posteo.net>
To: guix-patches <at> gnu.org
Subject: [PATCH 2/5] gnu: Add python-language-server.
Date: Thu, 07 Feb 2019 22:09:33 -0600
[0002-gnu-Add-python-language-server.patch (text/x-patch, inline)]
From 915bd232185ebcab96d96dc400ee3f010e691048 Mon Sep 17 00:00:00 2001
From: Brett Gilio <brettg <at> posteo.net>
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.
---
 gnu/packages/python-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 64bb85cc0..9efbbeba8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2492,6 +2492,37 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.")
 Language (TOML) configuration files.")
     (license license:expat)))
 
+(define-public python-language-server
+  (package
+  (name "python-language-server")
+  (version "0.22.0")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (pypi-uri "python-language-server" version))
+      (sha256
+        (base32
+          "04pbxl06hg0ddm2xx99jn9jh40yv0mmzdjw8pqd2rbcdg42hhia6"))))
+  (build-system python-build-system)
+  (propagated-inputs
+   `(("python-pluggy" ,python-pluggy)
+     ("python-jsonrps-server" ,python-jsonrpc-server)
+     ("python-jedi" ,python-jedi)
+     ("python-yapf" ,python-yapf)
+     ("python-pyflakes" ,python-pyflakes)
+     ("python-pydocstyle" ,python-pydocstyle)
+     ("python-pycodestyle" ,python-pycodestyle)
+     ("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")
+  (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.")
+  (license license:expat)))
+
 (define-public python-black
   (package
     (name "python-black")
-- 
2.20.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Tue, 12 Feb 2019 22:06:02 GMT) Full text and rfc822 format available.

Notification sent to Brett Gilio <brettg <at> posteo.net>:
bug acknowledged by developer. (Tue, 12 Feb 2019 22:06:02 GMT) Full text and rfc822 format available.

Message #10 received at 34380-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Brett Gilio <brettg <at> posteo.net>
Cc: 34380-done <at> debbugs.gnu.org
Subject: Re: [bug#34380] [PATCH 2/5] gnu: Add python-language-server.
Date: Tue, 12 Feb 2019 23:05:19 +0100
[Message part 1 (text/plain, inline)]
Brett Gilio <brettg <at> posteo.net> skribis:

>>From 915bd232185ebcab96d96dc400ee3f010e691048 Mon Sep 17 00:00:00 2001
> From: Brett Gilio <brettg <at> posteo.net>
> 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!

[Message part 2 (text/x-patch, 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

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 13 Mar 2019 11:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 39 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.