2025-01-07 06:27:27 +00:00

47 lines
1.2 KiB
Plaintext

# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
pkgname=py3-pytelegrambotapi
pkgver=4.26.0
# sometimes upstream forgets to tag pypi releases
_gittag=$pkgver
pkgrel=0
arch="noarch"
pkgdesc="A simple, but extensible Python implementation for the Telegram Bot API."
url="https://pypi.org/project/pyTelegramBotAPI/"
license="GPL-2.0-only"
depends="py3-requests"
makedepends="
py3-setuptools
py3-gpep517
py3-wheel
py3-hatchling
"
checkdepends="
py3-aiohttp
py3-pytest
"
source="$pkgname-$_gittag.tar.gz::https://github.com/eternnoir/pyTelegramBotAPI/archive/$_gittag.tar.gz"
builddir="$srcdir"/pyTelegramBotAPI-$_gittag
subpackages="$pkgname-pyc"
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 "$builddir"/.dist/*.whl
.testenv/bin/python3 -m pytest -v
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
5f62840762d250bcc845b5664c83275294922796e3f65779738c6f29cde75f464a767ae0bcd44417aee677caffa53857be6f113e4e027a1c21684a0e9ed5e53e py3-pytelegrambotapi-4.26.0.tar.gz
"