summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/music.scm15
1 files changed, 12 insertions, 3 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 1a626a4688..09044ef21d 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -507,7 +507,7 @@ enables iPod support in music players such as Clementine.")
(define-public mopidy
(package
(name "mopidy")
- (version "3.4.2")
+ (version "3.4.2") ;4+ needs Python 3.13
(source
(origin
(method git-fetch)
@@ -520,9 +520,17 @@ enables iPod support in music players such as Clementine.")
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 1451 passed, 9 deselected, 2 warnings
#:test-flags
;; This test is not compatible with our build environment.
- #~(list "-k" "not test_help_has_mopidy_options")
+ #~(list "-k" (string-join
+ (list "not test_help_has_mopidy_options"
+ ;; Tests fail with not equal assertion, and
+ ;; AssertionError: expected call not found.
+ "test_path_to_uri"
+ "test_missing_positionals"
+ "test_missing_positionals_subcommand")
+ " and not "))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'set-env
@@ -539,7 +547,8 @@ enables iPod support in music players such as Clementine.")
(native-inputs
(list python-pytest
python-responses
- python-setuptools))
+ python-setuptools
+ python-setuptools-scm))
(inputs
(list bash-minimal
gst-libav))