monitoring/dev-python/pywbem/pywbem-1.0.2.ebuild
Andreas Billmeier (@STR/VW3) f9a50c79f4 div bulk updates
2023-02-01 15:43:47 +01:00

36 lines
969 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
DESCRIPTION="pywbem - A WBEM client"
HOMEPAGE="https://github.com/pywbem/pywbem/ https://pywbem.github.io/pywbem/ https://pypi.org/project/pywbem/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/ply-3.10[${PYTHON_USEDEP}]
>=dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
>=dev-python/six-1.14.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
~dev-python/custom-inherit-2.2.2[${PYTHON_USEDEP}]
>=dev-python/yamlloader-0.5.5[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}