summary refs log tree commit diff
path: root/pkgs/applications/audio/mopidy
diff options
context:
space:
mode:
authorPablo Ovelleiro Corral <mail@pablo.tools>2023-08-24 10:02:23 +0200
committerPablo Ovelleiro Corral <mail@pablo.tools>2023-08-24 10:02:23 +0200
commitc6cdcbc4bdea2e588d8ddffc97a30886f4a63d72 (patch)
tree97b78fa83bfd6ad3641e6db20f0ee30f31ec421f /pkgs/applications/audio/mopidy
parent1dbcbb2d284de7b56dbb089e5a73afce0abb43aa (diff)
downloadnixpkgs-c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72.tar
nixpkgs-c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72.tar.gz
nixpkgs-c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72.tar.bz2
nixpkgs-c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72.tar.lz
nixpkgs-c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72.tar.xz
nixpkgs-c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72.tar.zst
nixpkgs-c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72.zip
addmissing beautifulsoup4 dependency
Diffstat (limited to 'pkgs/applications/audio/mopidy')
-rw-r--r--pkgs/applications/audio/mopidy/soundcloud.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/audio/mopidy/soundcloud.nix b/pkgs/applications/audio/mopidy/soundcloud.nix
index 3a7fbbaddce..cd9ef3e691a 100644
--- a/pkgs/applications/audio/mopidy/soundcloud.nix
+++ b/pkgs/applications/audio/mopidy/soundcloud.nix
@@ -11,7 +11,10 @@ pythonPackages.buildPythonApplication rec {
     sha256 = "sha256-1Qqbfw6NZ+2K1w+abMBfWo0RAmIRbNyIErEmalmWJ0s=";
   };
 
-  propagatedBuildInputs = [ mopidy ];
+  propagatedBuildInputs = [
+    mopidy
+    pythonPackages.beautifulsoup4
+  ];
 
   doCheck = false;