mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
29 lines
969 B
Text
29 lines
969 B
Text
# Contributor: Russ Webber <russ@rw.id.au>
|
|
# Maintainer: Russ Webber <russ@rw.id.au>
|
|
pkgname="py3-pydocstyle"
|
|
_pkgname="pydocstyle"
|
|
pkgver="5.0.2"
|
|
pkgrel=1
|
|
pkgdesc="Static analysis tool for checking compliance with Python docstring conventions"
|
|
url="https://www.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="5ac2e017ae95ff5c7759d6a2cb9ac990f94f668f5fd940792d927cc62628cd036afcf39ab5db6a11100dcca32af344b47f4a7319dd3a47c36367844d0c06d34a pydocstyle-5.0.2.tar.gz"
|