guru/dev-python/webpy/webpy-0.62.ebuild
Anna (cybertailor) Vyalkova 12088906c5
*/*: drop dead py3.9 impl
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2023-05-02 00:45:35 +05:00

39 lines
914 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
DESCRIPTION="A web framework for python that is as simple as it is powerful"
HOMEPAGE="
https://webpy.org
https://github.com/webpy/webpy
https://pypi.org/project/web.py/
"
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-python/cheroot[${PYTHON_USEDEP}]"
EPYTEST_IGNORE=(
# TODO: tests require postgresql and mysql running
rm tests/test_db.py
)
EPYTEST_DESELECT=(
# https://github.com/webpy/webpy/issues/712
# https://github.com/webpy/webpy/issues/713
tests/test_application.py::ApplicationTest::test_routing
tests/test_session.py::DiskStoreTest::testStoreConcurrent
)
distutils_enable_tests pytest
distutils_enable_sphinx docs