Andreas Billmeier (@Home/mbp) 2bf7ae53df
dev-python/rapt-ble: add 0.1.2
Signed-off-by: Andreas Billmeier <b@edevau.net>
2023-10-21 16:51:51 +02:00

35 lines
847 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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Parser for the RAPT Pill hydrometer BLE packets."
HOMEPAGE="https://github.com/sairon/rapt-ble https://pypi.org/project/rapt-ble/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/bluetooth-sensor-state-data-1.6.1[${PYTHON_USEDEP}]
>=dev-python/home-assistant-bluetooth-1.9.2[${PYTHON_USEDEP}]
>=dev-python/sensor-state-data-2.13.0[${PYTHON_USEDEP}]
>=dev-python/bluetooth-data-tools-0.3.1[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest