emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#58851: closed ([PATCH] gnu: Add python-neovim-remote.)


From: GNU bug Tracking System
Subject: bug#58851: closed ([PATCH] gnu: Add python-neovim-remote.)
Date: Sat, 05 Nov 2022 10:56:03 +0000

Your message dated Sat, 05 Nov 2022 11:54:33 +0100
with message-id <87y1spisc4.fsf@cbaines.net>
and subject line Re: [bug#58851] [PATCH] gnu: Add python-neovim-remote.
has caused the debbugs.gnu.org bug report #58851,
regarding [PATCH] gnu: Add python-neovim-remote.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
58851: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=58851
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-neovim-remote. Date: Sat, 29 Oct 2022 10:35:48 +0900
* gnu/packages/vim.scm (python-neovim-remote): New variable.
---
 gnu/packages/vim.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index ed24c39be2..20ca44e9cb 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -40,6 +40,7 @@ (define-module (gnu packages vim)
   #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system pyproject)
   #:use-module (gnu packages)
   #:use-module (gnu packages acl)
   #:use-module (gnu packages admin) ; For GNU hostname
@@ -924,6 +925,25 @@ (define-public python-pynvim
 through its msgpack-rpc API.")
     (license license:asl2.0)))
 
+(define-public python-neovim-remote
+  (package
+    (name "python-neovim-remote")
+    (version "2.5.1")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "neovim-remote" version))
+              (sha256
+               (base32
+                "00kxlb3f1k7iaxzpsr07scavmnyg8c1jmicmr13mfk2lcdac6g2b"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-psutil python-pynvim))
+    (home-page "https://github.com/mhinz/neovim-remote";)
+    (synopsis "Control nvim processes using `nvr` commandline tool")
+    (description "This package provide a `nvr` command, which can open File
+in remote nvim.  Also allow opening files from within :terminal without
+starting a nested nvim process.")
+    (license license:expat)))
+
 (define-public vim-guix-vim
   (package
     (name "vim-guix-vim")
-- 
2.38.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#58851] [PATCH] gnu: Add python-neovim-remote. Date: Sat, 05 Nov 2022 11:54:33 +0100 User-agent: mu4e 1.8.9; emacs 28.1
ギャラ via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/vim.scm (python-neovim-remote): New variable.
> ---
>  gnu/packages/vim.scm | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)

Looks good to me, I've pushed this to master as
8139322b8adf4d51badb598b123de600b2ab1682.

Thanks,

Chris

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]