From 1dbcbb2d284de7b56dbb089e5a73afce0abb43aa Mon Sep 17 00:00:00 2001 From: Pablo Ovelleiro Corral Date: Wed, 23 Aug 2023 13:56:56 +0200 Subject: [PATCH 1/2] mopidy-soundcloud: 3.0.1 -> 3.0.2 Diff: https://github.com/mopidy/mopidy-soundcloud/compare/v3.0.1...v3.0.2 --- pkgs/applications/audio/mopidy/soundcloud.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/soundcloud.nix b/pkgs/applications/audio/mopidy/soundcloud.nix index 1985cc6f387d..3a7fbbaddce3 100644 --- a/pkgs/applications/audio/mopidy/soundcloud.nix +++ b/pkgs/applications/audio/mopidy/soundcloud.nix @@ -2,13 +2,13 @@ pythonPackages.buildPythonApplication rec { pname = "mopidy-soundcloud"; - version = "3.0.1"; + version = "3.0.2"; src = fetchFromGitHub { owner = "mopidy"; repo = "mopidy-soundcloud"; rev = "v${version}"; - sha256 = "18wiiv4rca9vibvnc27f3q4apf8n61kbp7mdbm2pmz86qwmd47pa"; + sha256 = "sha256-1Qqbfw6NZ+2K1w+abMBfWo0RAmIRbNyIErEmalmWJ0s="; }; propagatedBuildInputs = [ mopidy ]; From c6cdcbc4bdea2e588d8ddffc97a30886f4a63d72 Mon Sep 17 00:00:00 2001 From: Pablo Ovelleiro Corral Date: Thu, 24 Aug 2023 10:02:23 +0200 Subject: [PATCH 2/2] 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 3a7fbbaddce3..cd9ef3e691ae 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;