mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 01:26:38 +02:00
45 lines
1.8 KiB
Text
45 lines
1.8 KiB
Text
# Contributor: Aiden Grossman <agrossman154@yahoo.com>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=py3-elementpath
|
|
pkgver=4.8.0
|
|
pkgrel=0
|
|
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="
|
|
89407e41d7794b533bc400873bfafea759347d13565f1be5cdf2e5444966be78e9c966c79e79bcd27615839b7f3006d0777e0bba94926ee6d417a86ed9c0825e py3-elementpath-4.8.0.tar.gz
|
|
"
|