7 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
13 repo = "spotify-downloader";
14 rev = "refs/tags/v${version}";
15 hash = "sha256-JoeNVMuEslz7A7G4ZvikimZrG75YrH5Mx3Oamtfy4cM=";
18 propagatedBuildInputs = with python3.pkgs; [
32 checkInputs = with python3.pkgs; [
44 "--prefix" "PATH" ":" (lib.makeBinPath [ ffmpeg ])
48 description = "Download your Spotify playlists and songs along with album art and metadata";
49 homepage = "https://github.com/spotDL/spotify-downloader";
50 license = licenses.mit;
51 maintainers = with maintainers; [ dotlambda ];