2021-03-27 12:30:21 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, ffmpeg
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "spotdl";
|
2022-04-17 02:38:00 +00:00
|
|
|
version = "3.9.5";
|
2021-03-27 12:30:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spotDL";
|
|
|
|
repo = "spotify-downloader";
|
|
|
|
rev = "v${version}";
|
2022-04-17 02:38:00 +00:00
|
|
|
hash = "sha256-Zdm+OVcFgOO8kbJDNQSVDLnIHzhvm9EPbcG95mNrnTk=";
|
2021-03-27 12:30:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
spotipy
|
|
|
|
pytube
|
|
|
|
rich
|
|
|
|
rapidfuzz
|
|
|
|
mutagen
|
|
|
|
ytmusicapi
|
2022-04-17 02:38:00 +00:00
|
|
|
yt-dlp
|
2021-03-27 12:30:21 +00:00
|
|
|
beautifulsoup4
|
|
|
|
requests
|
2021-05-25 13:35:33 +00:00
|
|
|
unidecode
|
2022-04-17 02:38:00 +00:00
|
|
|
setuptools
|
2021-03-27 12:30:21 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
|
|
pytestCheckHook
|
|
|
|
pytest-mock
|
|
|
|
pytest-vcr
|
|
|
|
pyfakefs
|
2021-04-09 11:26:58 +00:00
|
|
|
pytest-subprocess
|
2021-03-27 12:30:21 +00:00
|
|
|
];
|
|
|
|
|
2021-05-18 15:55:08 +00:00
|
|
|
# requires networking
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-03-27 12:30:21 +00:00
|
|
|
makeWrapperArgs = [
|
|
|
|
"--prefix" "PATH" ":" (lib.makeBinPath [ ffmpeg ])
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Download your Spotify playlists and songs along with album art and metadata";
|
|
|
|
homepage = "https://github.com/spotDL/spotify-downloader";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|