# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-sentry-sdk
pkgver=2.22.0
pkgrel=0
pkgdesc="The new Python SDK for Sentry.io"
url="https://sentry.io/for/python/"
arch="noarch"
license="BSD-2-Clause"
depends="
	py3-certifi
	py3-urllib3
	"
makedepends="
	py3-gpep517
	py3-setuptools
	py3-wheel
	"
checkdepends="
	py3-executing
	py3-jsonschema
	py3-pytest-asyncio
	py3-pytest-forked
	py3-pytest-localserver
	py3-pytest-xdist
	py3-responses
	py3-werkzeug
	"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/getsentry/sentry-python/archive/$pkgver.tar.gz"
builddir="$srcdir"/sentry-python-$pkgver
options="!check" # a bunch of deprecation-warning failures and improper shutdown.. seems to need net

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 .dist/*.whl
	# gcp: pip install
	# test_socket/test_requests: needs net
	# wsgi: weird list errors
	.testenv/bin/python3 -m pytest -n auto -p no:warnings \
		--deselect tests/integrations/gcp/test_gcp.py \
		--deselect tests/integrations/socket/test_socket.py \
		--deselect tests/integrations/requests/test_requests.py \
		--deselect tests/integrations/wsgi/test_wsgi.py
}

package() {
	python3 -m installer -d "$pkgdir" \
		.dist/*.whl
}

sha512sums="
c2c3b6600bf2331f20dae4d27fa91e4de8c2f8990e945a14c35c6b1af2cb11f56c9fe299650de14df7c04cac28f3c5f2211a43e87929f2030a8527d92adfe5d1  py3-sentry-sdk-2.22.0.tar.gz
"
