blob: 064487da4b20d920f2b41ab8dd42a5e1f61ff803 (
plain)
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
26
27
28
29
|
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname="py3-language-server"
pkgver="0.31.8"
pkgrel=0
pkgdesc="An implementation of the Language Server Protocol for Python"
url="https://github.com/palantir/python-language-server"
arch="noarch"
license="MIT"
depends="python3 py3-wheel py3-ujson py3-pydocstyle py3-jsonrpc-server py3-jedi py3-parso py3-setuptools py3-pluggy"
checkdepends="py3-pytest py3-mock py3-pycodestyle py3-pyflakes py3-mccabe
py3-autopep8 py3-pylint py3-python-versioneer py3-pytest-cov py3-coverage
py3-numpy py3-pandas py3-matplotlib py3-qt5 py3-yapf py3-rope"
source="https://github.com/palantir/python-language-server/archive/$pkgver/python-language-server-$pkgver.tar.gz"
builddir="$srcdir/python-language-server-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="d6569ac39d96c78485d87b5ed3e60a10f45e43ed7961260a426a4356a4923a4aef366b088db3964f1aa87a2e95b21ed9d17094d1b1c5154c72fc8371e61f24d8 python-language-server-0.31.8.tar.gz"
|