spotdl: 4.2.4 -> 4.2.5

Diff: https://github.com/spotDL/spotify-downloader/compare/refs/tags/v4.2.4...v4.2.5

Changelog: https://github.com/spotDL/spotify-downloader/releases/tag/v4.2.5

+4 -6
+4 -6
pkgs/tools/audio/spotdl/default.nix
··· 9 python = python3; 10 in python.pkgs.buildPythonApplication rec { 11 pname = "spotdl"; 12 - version = "4.2.4"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "spotDL"; 17 repo = "spotify-downloader"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-U0UA94t7WdCeU9Y86rcnT8BzXVx8ryhD3MTJxmNBYcc="; 20 }; 21 22 - nativeBuildInputs = with python.pkgs; [ 23 poetry-core 24 pythonRelaxDepsHook 25 ]; 26 27 pythonRelaxDeps = true; 28 29 - propagatedBuildInputs = with python.pkgs; [ 30 spotipy 31 ytmusicapi 32 pytube ··· 43 platformdirs 44 pykakasi 45 syncedlyrics 46 - typing-extensions 47 soundcloud-v2 48 bandcamp-api 49 - setuptools # for pkg_resources 50 ] ++ python-slugify.optional-dependencies.unidecode; 51 52 nativeCheckInputs = with python.pkgs; [
··· 9 python = python3; 10 in python.pkgs.buildPythonApplication rec { 11 pname = "spotdl"; 12 + version = "4.2.5"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "spotDL"; 17 repo = "spotify-downloader"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-vxMhFs2mLbVQndlC2UpeDP+M4pwU9Y4cZHbZ8y3vWbI="; 20 }; 21 22 + build-system = with python.pkgs; [ 23 poetry-core 24 pythonRelaxDepsHook 25 ]; 26 27 pythonRelaxDeps = true; 28 29 + dependencies = with python.pkgs; [ 30 spotipy 31 ytmusicapi 32 pytube ··· 43 platformdirs 44 pykakasi 45 syncedlyrics 46 soundcloud-v2 47 bandcamp-api 48 ] ++ python-slugify.optional-dependencies.unidecode; 49 50 nativeCheckInputs = with python.pkgs; [