about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-03-31 14:43:21 +0000
committerGitHub <noreply@github.com>2020-03-31 14:43:21 +0000
commite2c72facece214ec7022101d7f914747bf2cab54 (patch)
tree051da668a8b13ae58de41c66cdf32de740c72d85
parent3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b (diff)
parent9c3be05166c36aeed3d762941e2f7159b498ace5 (diff)
downloadnixlib-e2c72facece214ec7022101d7f914747bf2cab54.tar
nixlib-e2c72facece214ec7022101d7f914747bf2cab54.tar.gz
nixlib-e2c72facece214ec7022101d7f914747bf2cab54.tar.bz2
nixlib-e2c72facece214ec7022101d7f914747bf2cab54.tar.lz
nixlib-e2c72facece214ec7022101d7f914747bf2cab54.tar.xz
nixlib-e2c72facece214ec7022101d7f914747bf2cab54.tar.zst
nixlib-e2c72facece214ec7022101d7f914747bf2cab54.zip
Merge pull request #83322 from doronbehar/improve-beets-test
pythonPackages.beets: add unconditionally deps needed for checks
-rw-r--r--pkgs/tools/audio/beets/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix
index 1eb8dd114f5f..71ebe7ceb81d 100644
--- a/pkgs/tools/audio/beets/default.nix
+++ b/pkgs/tools/audio/beets/default.nix
@@ -172,6 +172,13 @@ in pythonPackages.buildPythonApplication rec {
     nose
     rarfile
     responses
+    # Although considered as plugin dependencies, they are needed for the
+    # tests, for disabling them via an override makes the build fail. see:
+    # https://github.com/beetbox/beets/blob/v1.4.9/setup.py
+    pylast
+    mpd2
+    discogs_client
+    pyxdg
   ];
 
   patches = [
@@ -257,7 +264,7 @@ in pythonPackages.buildPythonApplication rec {
 
   meta = {
     description = "Music tagger and library organizer";
-    homepage = http://beets.io;
+    homepage = "http://beets.io";
     license = licenses.mit;
     maintainers = with maintainers; [ aszlig domenkozar pjones ];
     platforms = platforms.linux;