contrib/python3-tzdata/Pkgfile

21 lines
556 B
Plaintext

# Description: Python package wrapping the IANA time zone database
# URL: https://github.com/python/tzdata
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-build python3-installer
name=python3-tzdata
version=2023.3
release=1
source=(https://files.pythonhosted.org/packages/source/t/tzdata/tzdata-$version.tar.gz)
build() {
cd tzdata-$version
/usr/bin/python3 -m build \
--wheel \
--skip-dependency-check \
--no-isolation
/usr/bin/python3 -m installer \
--compile-bytecode 2 \
--destdir=$PKG dist/*.whl
}