blob: 0eadf4d211d9cbf6495717c9757f8bb7ad4a7abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
TAG=v.${PV/_beta/b}
MY_P=python-betterproto-${TAG}
DESCRIPTION="A better Protobuf / gRPC generator & library"
HOMEPAGE="
https://github.com/danielgtaylor/python-betterproto/
https://pypi.org/project/betterproto/
"
# no tests in sdist, as of 2.0.0b7
SRC_URI="
https://github.com/danielgtaylor/python-betterproto/archive/${TAG}.tar.gz
-> ${MY_P}.gh.tar.gz
"
if [[ ${PKGBUMPING} != ${PVR} ]]; then
# poetry install -E compiler
# poetry run python -m tests.generate -v
# pack tests/output*
SRC_URI+="
test? (
https://dev.gentoo.org/~mgorny/dist/${MY_P}.tests.tar.xz
)
"
fi
S=${WORKDIR}/${MY_P}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/black-23.1.0[${PYTHON_USEDEP}]
>=dev-python/grpclib-0.4.1[${PYTHON_USEDEP}]
>=dev-python/isort-5.11.5[${PYTHON_USEDEP}]
>=dev-python/jinja2-3.0.3[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.7.1[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/cachelib[${PYTHON_USEDEP}]
dev-python/pydantic[${PYTHON_USEDEP}]
dev-python/tomlkit[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
PATCHES=(
# https://github.com/danielgtaylor/python-betterproto/pull/622
"${FILESDIR}/${P}-pytest-8.patch"
)
python_test() {
local EPYTEST_DESELECT=(
# TODO: ordering issue?
"tests/test_inputs.py::test_binary_compatibility[map]"
)
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -p asyncio -p pytest_mock
}
|