void-packages/srcpkgs/python3-lsp-server/template

43 lines
1.5 KiB
Bash

# Template file for 'python3-lsp-server'
pkgname=python3-lsp-server
version=1.11.0
revision=1
build_style=python3-module
hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
depends="python3-jedi python3-pluggy python3-lsp-jsonrpc python3-ultrajson
python3-setuptools python3-docstring-to-markdown python3-yapf python3-toml"
checkdepends="${depends} autopep8 python3-coverage python3-flaky python3-matplotlib
python3-mccabe python3-mock python3-numpy python3-pandas python3-pycodestyle
python3-PyQt5 python3-pyflakes python3-pylint python3-pytest python3-pytest-cov
flake8"
short_desc="Python implementation of the Language Server Protocol"
maintainer="Cameron Nemo <cam@nohom.org>"
license="MIT"
homepage="https://github.com/python-lsp/python-lsp-server"
changelog="https://raw.githubusercontent.com/python-lsp/python-lsp-server/develop/CHANGELOG.md"
distfiles="${PYPI_SITE}/p/python-lsp-server/python-lsp-server-${version}.tar.gz"
checksum=89edd6fb3f7852e4bf5a3d1d95ea41484d1a28fa94b6e3cbff12b9db123b8e86
do_check() {
python3 -m pytest \
--ignore=test/plugins/test_completion.py \
--ignore=test/plugins/test_pydocstyle_lint.py \
--ignore=test/plugins/test_rope_rename.py \
--ignore=test/plugins/test_yapf_format.py \
--ignore=test/plugins/test_autoimport.py
}
post_install() {
vlicense LICENSE
ln -s pylsp "${DESTDIR}/usr/bin/pyls"
}
python3-language-server_package() {
build_style=meta
depends="python3-lsp-server>=${version}_${revision}"
short_desc+=" (transitional dummy package)"
pkg_install() {
vmove usr/bin/pyls
}
}