HomeAssistantRepository/dev-python/gassist-text/gassist-text-0.0.11.ebuild
Andreas Billmeier 855eed24f9
dev-python/gassist-text: add 0.0.11
Closes: #3118
Signed-off-by: Andreas Billmeier <b@edevau.net>
2024-04-08 18:38:42 +02:00

34 lines
859 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="A Python library for interacting with Google Assistant API via text"
HOMEPAGE="https://github.com/tronikos/gassist_text https://pypi.org/project/gassist-text/"
SRC_URI="https://github.com/tronikos/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/google-auth[${PYTHON_USEDEP}]
dev-python/grpcio[${PYTHON_USEDEP}]
dev-python/protobuf-python[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
"
S="${WORKDIR}/${MY_P}"
distutils_enable_tests pytest