37 lines
960 B
Bash
37 lines
960 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Python module to interface with Tuya WiFi smart devices"
|
|
HOMEPAGE="https://github.com/jasonacox/tinytuya https://pypi.org/project/tinytuya"
|
|
|
|
SRC_URI="$(pypi_wheel_url ${PYPI_PN} ${PV} "py2.py3")"
|
|
S=${WORKDIR}
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND=">=dev-python/cryptography-3.20.0[${PYTHON_USEDEP}]
|
|
~dev-python/requests-2.32.0[${PYTHON_USEDEP}]
|
|
~dev-python/colorama-0.4.0[${PYTHON_USEDEP}]"
|
|
BDEPEND="app-arch/unzip"
|
|
distutils_enable_tests pytest
|
|
|
|
src_unpack() {
|
|
if [[ ${PKGBUMPING} == ${PVR} ]]; then
|
|
unzip "${DISTDIR}/${A}" || die
|
|
fi
|
|
}
|
|
|
|
python_compile() {
|
|
distutils_wheel_install "${BUILD_DIR}/install" \
|
|
"${DISTDIR}/$(pypi_wheel_name ${PYPI_PN} ${PV} "py2.py3")"
|
|
} |