void-packages/srcpkgs/python3-tornado/template
2025-08-31 11:43:37 -04:00

35 lines
1.3 KiB
Bash

# Template file for 'python3-tornado'
pkgname=python3-tornado
version=6.5.2
revision=1
build_style=python3-pep517
hostmakedepends="python3-setuptools python3-wheel"
makedepends="python3-devel"
depends="python3 ca-certificates"
checkdepends="python3-curl python3-pycares python3-Twisted"
short_desc="Python3 web framework and asynchronous networking library"
maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
license="Apache-2.0"
homepage="http://www.tornadoweb.org/"
changelog="https://www.tornadoweb.org/en/stable/releases.html"
distfiles="${PYPI_SITE}/t/tornado/tornado-${version}.tar.gz"
checksum=ab53c8f9a0fa351e2c0741284e06c7a45da86afb544133201c5cc8578eb076a0
do_check() {
# There is one instance of test_bind_source_ip (the one for
# curl_httpclient_test.CurlHTTPClientCommonTestCase)
# which for some reason is taking a little bit over 5s
# (but only on x86_64-musl and only on CI).
#
# The default test timeout is 5s so the test times out and fails.
# See: https://github.com/void-linux/void-packages/pull/44312#issuecomment-1582361791
#
# Setting the timeout to 6 works around it.
local -x ASYNC_TEST_TIMEOUT=6
# `tcpclient_test::test_source_port_fail` fails on CI, force skip
[ "$XBPS_BUILD_ENVIRONMENT" = void-packages-ci ] && local -x LOGNAME=root
# pytest is not supported
python3 -m tornado.test
}