testing/py3-pycosat: add missing build dependency on py3-setuptools

This commit is contained in:
ptrcnull 2024-03-28 19:10:09 +01:00
parent 35e48171c1
commit 605a4161be
No known key found for this signature in database
GPG Key ID: 411F7B30801DD9CA

View File

@ -8,7 +8,7 @@ pkgdesc="Python bindings to picosat (a SAT solver)"
url="https://github.com/conda/pycosat"
arch="all"
license="MIT"
makedepends="python3-dev"
makedepends="python3-dev py3-setuptools"
source="https://github.com/conda/pycosat/archive/$pkgver/$_pkgname-$pkgver.tar.gz
musl-compat.patch
"
@ -19,7 +19,7 @@ build() {
}
check() {
PYTHONPATH="$(dirname ./build/lib.linux-*-3.*/*.so)" \
PYTHONPATH="$(echo build/lib.linux*)" \
python3 test_pycosat.py
}