mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
47 lines
1.2 KiB
Plaintext
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.22.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="
|
|
5ce13a0e2443c208f2321e70c53d34d43844b16eede3673dea6d5867efcadf92727a91e0ef3f58cc8d330956c302edc0c92217a80a47fa60ba20fd2f5910a5dc py3-pytelegrambotapi-4.22.0.tar.gz
|
|
"
|