guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7081495ec6bc33fd8318d1b0577c11da4de95bc6
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Dec 21 19:08:37 2025 +0100
gnu: python-pynvim: Update to 0.6.0.
* gnu/packages/vim.scm (python-pynvim): Update to 0.6.0.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Enable them.
[native-inputs]: Add neovim, python-pytest, python-pytest-timeout,
python-setuptools.
[description]: Improve style.
Change-Id: I08ccc31275f8a4c96c4cb67eafa95f3cc5346116
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/vim.scm | 36 +++++++++++++++++++++---------------
1 file changed, 21 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index eddd8f19f4..301bbd6423 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1032,23 +1032,29 @@ With the package comes a plugin to use vifm as a vim
file selector.")
(define-public python-pynvim
(package
(name "python-pynvim")
- (version "0.4.2")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "pynvim" version))
- (sha256
- (base32
- "13qgwkqbx012j5spis1aw8rb120rw0zphgjy1j58irax8r6j1ikb"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-greenlet python-msgpack))
- (arguments
- `(#:tests? #f))
+ (version "0.6.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/neovim/pynvim")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0k98c0i14z3adx6l4ncf2zmzk9aykqkdnws6qw4m0yj5z61zh6av"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list neovim
+ python-pytest
+ python-pytest-timeout
+ python-setuptools))
+ (propagated-inputs (list python-greenlet python-msgpack))
(home-page "https://github.com/neovim/pynvim")
(synopsis "Python client and plugin host for neovim")
- (description "Pynvim implements support for python plugins in neovim. It
-also works as a library for connecting to and scripting neovim processes
-through its msgpack-rpc API.")
+ (description
+ "Pynvim implements support for python plugins in neovim. It also works
+as a library for connecting to and scripting neovim processes through its
+msgpack-rpc API.")
(license license:asl2.0)))
(define-public vim-guix-vim