void-packages/srcpkgs/python3-lsp-server/template
Cameron Nemo 3144418dea New package: python3-lsp-server-1.4.1
Substitute for python3-language-server

Fixes #34192
2022-04-06 23:34:10 +02:00

40 lines
1.3 KiB
Bash

# Template file for 'python3-lsp-server'
pkgname=python3-lsp-server
version=1.4.1
revision=1
wrksrc="${pkgname/3}-${version}"
build_style=python3-module
hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel"
depends="python3-jedi python3-pluggy python3-lsp-jsonrpc python3-ultrajson
python3-setuptools"
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
python3-yapf flake8"
short_desc="Python implementation of the Language Server Protocol"
maintainer="Cameron Nemo <cnemo@tutanota.com>"
license="MIT"
homepage="https://github.com/python-lsp/python-lsp-server"
distfiles="${PYPI_SITE}/p/${pkgname/3}/${pkgname/3}-${version}.tar.gz"
checksum=be7f83298af9f0951a93972cafc9db04fd7cf5c05f20812515275f0ba70e342f
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
}
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
}
}