HomeAssistantRepository/dev-python/pybluez/pybluez-0.22-r2.ebuild
David Racine 8c2dee799a zha: Align more dependencies to HomeAssistant
bluez: fix runtime errors, bluez requires experimental features
TODO: I think we'll have to give capabilities to the homeassistant process... I just realized HAOS is running it as root, this is probably why I have Permission denied error in ha logs
2024-11-10 14:45:04 -05:00

34 lines
746 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYPI_PN="PyBluez"
inherit distutils-r1 pypi
DESCRIPTION="Bluetooth Python extension module"
HOMEPAGE="https://github.com/pybluez/pybluez/ https://pypi.org/project/PyBluez/"
SRC_URI="$(pypi_sdist_url --no-normalize "${PYPI_PN}" "${PV}" ".zip")"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
PATCHES=("${FILESDIR}/${PV}_py311.patch")
RDEPEND="net-wireless/bluez[experimental]"
BDEPEND="
app-arch/unzip
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}