aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-language-server/APKBUILD
blob: 3caa3d82b006dec0add88e822ab16f0f50de25c5 (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.7"
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"
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="f160631701f9795e089a89d811b9924bf2256dca5ca149cf1b5f506885a45fb77667ac3755f328343ea652eba21ac16f442532237cd78c49cb419a89a1d6e1f7  python-language-server-0.31.7.tar.gz"