summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-neovim-remote/package.py
blob: e9d722262df578d70dc31506e4480db58152aa58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class PyNeovimRemote(PythonPackage):
    """Remote opening and control for neovim: nvr"""

    homepage = "https://github.com/mhinz/neovim-remote"
    pypi = "neovim-remote/neovim-remote-2.4.0.tar.gz"

    maintainers("trws")

    license("MIT")

    version("2.4.0", sha256="f199ebb61c3decf462feed4e7d467094ed38d8afaf43620736b5983a12fe2427")

    depends_on("python@3.5:", type=("build", "run"))

    depends_on("py-setuptools", type="build")
    depends_on("py-psutil", type=("build", "run"))
    depends_on("py-pynvim", type=("build", "run"))