From c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72 Mon Sep 17 00:00:00 2001 From: Pablo Ovelleiro Corral Date: Thu, 24 Aug 2023 10:02:23 +0200 Subject: [PATCH] addmissing beautifulsoup4 dependency --- pkgs/applications/audio/mopidy/soundcloud.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;