2024-06-15 03:05:04 +00:00

45 lines
1.7 KiB
Plaintext

# Contributor: Aiden Grossman <agrossman154@yahoo.com>
# Maintainer: Celeste <cielesti@protonmail.com>
pkgname=py3-elementpath
pkgver=4.4.0
pkgrel=1
pkgdesc="XPath 1.0/2.0 parsers and selectors for ElementTree and lxml"
url="https://github.com/sissaschool/elementpath"
arch="noarch"
license="MIT"
makedepends="py3-gpep517 py3-setuptools py3-wheel"
checkdepends="py3-pytest py3-lxml"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/sissaschool/elementpath/archive/refs/tags/v$pkgver.tar.gz"
builddir="$srcdir/elementpath-$pkgver"
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
python3 -m venv --clear --without-pip --system-site-packages .testenv
.testenv/bin/python3 -m installer .dist/*.whl
# first: AssertionError: ElementPathError not raised
# rest: AssertionError: First sequence is not a list: -1
.testenv/bin/python3 -m pytest \
--deselect tests/test_collations.py::CollationsTest::test_context_activation \
--deselect tests/test_xpath2_functions.py::XPath2FunctionsTest::test_compare_function \
--deselect tests/test_xpath2_functions.py::LxmlXPath2FunctionsTest::test_compare_function \
--deselect tests/test_xpath30.py::XPath30FunctionsTest::test_compare_function \
--deselect tests/test_xpath30.py::LxmlXPath30FunctionsTest::test_compare_function \
--deselect tests/test_xpath31.py::XPath31FunctionsTest::test_compare_function \
--deselect tests/test_xpath31.py::LxmlXPath31FunctionsTest::test_compare_function
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
8171cb004dba68d84dd26a9ac5e8feeb9cc87eb518cc232b3128dadd7ad92840903fe2d02eb4428e4e4df7590bf6c68bdae180ad678bccb969686875b0a84ae1 py3-elementpath-4.4.0.tar.gz
"