27 lines
894 B
Bash
27 lines
894 B
Bash
# Template file for 'python3-Werkzeug'
|
|
pkgname=python3-Werkzeug
|
|
version=2.0.1
|
|
revision=2
|
|
wrksrc="${pkgname#*-}-${version}"
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3"
|
|
checkdepends="python3-pytest python3-hypothesis python3-requests"
|
|
short_desc="Swiss Army knife of Python web development (Python3)"
|
|
maintainer="Markus Berger <pulux@pf4sh.de>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://palletsprojects.com/p/werkzeug/"
|
|
distfiles="${PYPI_SITE}/W/Werkzeug/Werkzeug-${version}.tar.gz"
|
|
checksum=1de1db30d010ff1af14a009224ec49ab2329ad2cde454c8a708130642d579c42
|
|
|
|
do_check() {
|
|
# Tests depend on xprocess and pytest-timeout, which aren't packaged
|
|
# For some reason, --ignore doesn't work
|
|
rm -f tests/conftest.py tests/test_debug.py tests/test_serving.py
|
|
PYTHONPATH=src python3 -m pytest tests -k 'not test_http_proxy'
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.rst
|
|
}
|