2025-07-06 21:44:46 +02:00

66 lines
1.6 KiB
Plaintext

maintainer="Hoang Nguyen <folliekazetani@protonmail.com>"
pkgname=py3-dateparser
_pyname=${pkgname#py3-}
pkgver=1.2.2
pkgrel=0
pkgdesc="Python parser for human readable dates"
url="https://github.com/scrapinghub/dateparser"
arch="noarch"
license="BSD-3-Clause"
depends="
python3
py3-dateutil
py3-regex
py3-tz
py3-tzlocal
"
makedepends="
py3-gpep517
py3-setuptools
py3-wheel
"
checkdepends="
py3-fasttext
py3-gitpython
py3-langdetect
py3-parameterized
py3-parsel
py3-pytest
py3-requests
py3-ruamel.yaml
"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/scrapinghub/dateparser/archive/refs/tags/v$pkgver.tar.gz"
builddir="$srcdir/$_pyname-$pkgver"
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
# test_relative_base_setting_2_en fails due to tzinfo mismatch
# test_custom_language_detect_fast_text fails due to wrong file format
_test_filter="not test_parsing_date_should_fail_using_datetime_strptime_if_locale_is_non_english \
and not test_relative_base_setting_2_en and not test_custom_language_detect_fast_text"
python3 -m venv --clear --without-pip --system-site-packages .testenv
.testenv/bin/python3 -m installer .dist/*.whl
# test_hijri.py: needs hijri_converter, test_jalali.py: convertdate
.testenv/bin/python3 -m pytest tests \
-k "$_test_filter" \
--ignore tests/test_hijri.py \
--ignore tests/test_jalali.py
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
98431efec4763821438d531e5046c1fd69f70e5408eb9bd3359ce95de1c64833e90ff65c6c7ffc8617bce00392a90eab4b560111e937e8089f66f038ae7bcb3c py3-dateparser-1.2.2.tar.gz
"