HomeAssistantRepository/dev-python/tank-utility/tank-utility-1.5.0.ebuild
Andreas Billmeier 2643e221e0
dev-python/tank-utility: drop 1.4.1
Signed-off-by: Andreas Billmeier <b@edevau.net>
2024-04-12 21:06:36 +02:00

36 lines
822 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="A smart propane tank monitor."
HOMEPAGE="https://github.com/krismolendyke/tank-utility https://pypi.org/project/tank-utility/"
MY_PN=${PN/-/_}
SRC_URI="https://github.com/krismolendyke/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/${PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]
dev-python/urllib3[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest