mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
Part-of: https://github.com/gentoo/guru/pull/447 Closes: https://github.com/gentoo/guru/pull/447 Signed-off-by: David Roman <stkw0@disroot.org>
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{12..13} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="An extensible music server written in Python."
|
|
HOMEPAGE="https://mopidy.com/"
|
|
SRC_URI="https://github.com/mopidy/mopidy/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
dev-python/gst-python[${PYTHON_USEDEP}]
|
|
media-plugins/gst-plugins-meta[mp3,ogg,flac]
|
|
dev-python/pykka[${PYTHON_USEDEP}]
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
dev-python/tornado[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
DEPEND="
|
|
${RDEPEND}
|
|
|
|
test? (
|
|
dev-python/responses[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
EPYTEST_IGNORE=(
|
|
# Upstream uses a mix of pytest and unittest
|
|
# Since most tests are pytest, let's ignore unittest tests
|
|
tests/http/test_server.py
|
|
tests/http/test_handlers.py
|
|
)
|
|
|
|
EPYTEST_DESELECT=(
|
|
# Broken test due to network-sandbox
|
|
tests/stream/test_playback.py
|
|
tests/test_help.py::HelpTest::test_help_has_mopidy_options
|
|
# https://github.com/mopidy/mopidy/commit/6c63054fcdb41394e0073a3af8972a589e2a3c59
|
|
tests/test_commands.py::CommandParsingTest::test_missing_positionals
|
|
tests/test_commands.py::CommandParsingTest::test_missing_positionals_subcommand
|
|
# https://github.com/mopidy/mopidy/commit/784073e52af58c51a11ad89eeb793a72ecc01c92
|
|
tests/m3u/test_translator.py::test_path_to_uri[test.mp3-file-file:///test.mp3]
|
|
)
|