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