summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Scogland <scogland1@llnl.gov>2022-02-21 01:11:57 -0800
committerGitHub <noreply@github.com>2022-02-21 10:11:57 +0100
commitf36a6f3fc0f08c36da451d51bcf6d76ee0f067de (patch)
treeacbb32d9581a99c4d1fde3285492927ff14a299d
parent7995b7eac4cd1fd02e8629ae904b2d9134d3f3ab (diff)
downloadspack-f36a6f3fc0f08c36da451d51bcf6d76ee0f067de.tar.gz
spack-f36a6f3fc0f08c36da451d51bcf6d76ee0f067de.tar.bz2
spack-f36a6f3fc0f08c36da451d51bcf6d76ee0f067de.tar.xz
spack-f36a6f3fc0f08c36da451d51bcf6d76ee0f067de.zip
neovim remote: add new package (#29103)
-rw-r--r--var/spack/repos/builtin/packages/py-neovim-remote/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-neovim-remote/package.py b/var/spack/repos/builtin/packages/py-neovim-remote/package.py
new file mode 100644
index 0000000000..6b215afcf3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-neovim-remote/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2022 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 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']
+
+ 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'))