31 lines
924 B
Bash
31 lines
924 B
Bash
# Template file for 'python3-elementpath'
|
|
pkgname=python3-elementpath
|
|
version=1.4.6
|
|
revision=1
|
|
archs=noarch
|
|
wrksrc=elementpath-${version}
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3"
|
|
checkdepends="python3-lxml python3-xmlschema"
|
|
short_desc="XPath 1.0/2.0 parsers and selectors for ElementTree and lxml"
|
|
maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/sissaschool/elementpath"
|
|
distfiles="${PYPI_SITE}/e/elementpath/elementpath-${version}.tar.gz"
|
|
checksum=653b863cca106a8e45699f07f1b6eb47efcf4b37f9402849dc339f0e1fb1ecb8
|
|
|
|
post_patch() {
|
|
# locale handling in musl is NOT that ideal,
|
|
# those tests are broken on musl
|
|
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
|
vsed -i tests/test_xpath2_functions.py \
|
|
-e "/compare.*Strassen.* 1/d" \
|
|
-e "/with self\.assertRaises(locale\.Error)/,+3d"
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|