nixpkgs/pkgs/tools/audio/spotdl/default.nix

54 lines
1 KiB
Nix
Raw Normal View History

2021-03-27 12:30:21 +00:00
{ lib
, python3
, fetchFromGitHub
, ffmpeg
}:
python3.pkgs.buildPythonApplication rec {
pname = "spotdl";
2021-07-30 04:21:48 +00:00
version = "3.7.2";
2021-03-27 12:30:21 +00:00
src = fetchFromGitHub {
owner = "spotDL";
repo = "spotify-downloader";
rev = "v${version}";
2021-07-30 04:21:48 +00:00
sha256 = "sha256-ftSnlruSv+RtvjTpZPYg9Z2EK4th8NbDhVlG2eIc87s=";
2021-03-27 12:30:21 +00:00
};
propagatedBuildInputs = with python3.pkgs; [
spotipy
pytube
rich
rapidfuzz
mutagen
ytmusicapi
tqdm
beautifulsoup4
requests
unidecode
2021-07-30 04:21:48 +00:00
youtube-dl
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
];
# 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 ];
};
}