py-pynvim: add new package (#29102)

This commit is contained in:
Tom Scogland 2022-02-21 01:11:30 -08:00 committed by GitHub
parent 509f1cc00a
commit 7995b7eac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,21 @@
# 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 PyPynvim(PythonPackage):
"""Neovim python client"""
homepage = "https://pynvim.readthedocs.io/en/latest/"
pypi = "pynvim/pynvim-0.4.3.tar.gz"
maintainers = ['trws']
version('0.4.3', sha256='3a795378bde5e8092fbeb3a1a99be9c613d2685542f1db0e5c6fd467eed56dff')
depends_on('py-setuptools', type='build')
depends_on('py-msgpack', type=('build', 'run'))