~ruther/guix-local

7081495ec6bc33fd8318d1b0577c11da4de95bc6 — Nicolas Graves 2 months ago fb99bbf
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 <sharlatanus@gmail.com>
1 files changed, 21 insertions(+), 15 deletions(-)

M gnu/packages/vim.scm
M gnu/packages/vim.scm => gnu/packages/vim.scm +21 -15
@@ 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