aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-pydocstyle/APKBUILD
blob: 44afd84a4ae681d45cb1d7a8aae172528f1f77e0 (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: Russ Webber <russ@rw.id.au>
# Maintainer: Russ Webber <russ@rw.id.au>
pkgname="py3-pydocstyle"
_pkgname="pydocstyle"
pkgver="4.0.1"
pkgrel=1
pkgdesc="Static analysis tool for checking compliance with Python docstring conventions"
url="https://pydocstyle.org/"
arch="noarch"
license="MIT"
depends="python3 py3-snowballstemmer"
makedepends="py3-setuptools py3-pytest py3-mock py3-six"
source="$_pkgname-$pkgver.tar.gz::https://github.com/PyCQA/$_pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

build() {
	python3 setup.py build
}

check() {
	# integration tests call pip which doesn't exist
	PYTHONPATH="$builddir/build/lib" py.test --deselect src/tests/test_integration.py -vv src/tests
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="6d1b9d1eb46185a616a6715113542a41f1085296b162da563ed18086addd5f8f14dd30d6460cf105a3b0542fc0823f47214f1b329b9dfa0c4cf211cde700aa19  pydocstyle-4.0.1.tar.gz"