HomeAssistantRepository/dev-python/gstreamer-player/gstreamer-player-1.1.2.ebuild
2023-06-11 13:54:18 +02:00

35 lines
790 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
inherit distutils-r1 pypi
DESCRIPTION="Python 3 wrapper for playing media via gstreamer"
HOMEPAGE="https://github.com/happyleavesaoc/gstreamer-player/ https://pypi.org/project/gstreamer-player/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=media-libs/mutagen-1.36.2[${PYTHON_USEDEP}]
>=dev-python/pygobject-3.42.2[${PYTHON_USEDEP}]
>=dev-python/lxml-3.6.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest