HomeAssistantRepository/dev-python/ring-doorbell/ring-doorbell-0.8.11.ebuild
Andreas Billmeier 29d06552d5
dev-python/ring-doorbell: drop 0.8.5, add 0.8.11
Closes: #3295
Signed-off-by: Andreas Billmeier <b@edevau.net>
2024-05-12 22:36:52 +02:00

37 lines
1.1 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="A Python library to communicate with Ring Door Bell (https://ring.com/)"
HOMEPAGE="https://github.com/tchellomello/python-ring-doorbell https://pypi.org/project/ring-doorbell/"
LICENSE="LGPL-3+"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="listen test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.0.0[${PYTHON_USEDEP}]
>=dev-python/requests-oauthlib-1.3.0[${PYTHON_USEDEP}]
>=dev-python/oauthlib-3.0.0[${PYTHON_USEDEP}]
>=dev-python/pytz-2022.0[${PYTHON_USEDEP}]
dev-python/asyncclick[${PYTHON_USEDEP}]
dev-python/anyio[${PYTHON_USEDEP}]
listen? ( >=dev-python/firebase-messaging-0.2.1[${PYTHON_USEDEP}] )"
distutils_enable_tests pytest
python_prepare_all() {
sed -i -e 's:"LICENSE",::' pyproject.toml || die
sed -i -e 's:"CONTRIBUTING.rst", ::' pyproject.toml || die
sed -i -e 's:"CHANGELOG.rst",::' pyproject.toml || die
distutils-r1_python_prepare_all
}