depot/third_party/nixpkgs/pkgs/tools/audio/spotdl/default.nix
Default email bba55970ba Project import generated by Copybara.
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
2021-04-05 17:23:46 +02:00

47 lines
936 B
Nix

{ lib
, python3
, fetchFromGitHub
, ffmpeg
}:
python3.pkgs.buildPythonApplication rec {
pname = "spotdl";
version = "3.5.0";
src = fetchFromGitHub {
owner = "spotDL";
repo = "spotify-downloader";
rev = "v${version}";
sha256 = "1nxf911hi578jw24hlcvyy33z1pkvr41pfrywbs3157rj1fj2vfi";
};
propagatedBuildInputs = with python3.pkgs; [
spotipy
pytube
rich
rapidfuzz
mutagen
ytmusicapi
tqdm
beautifulsoup4
requests
];
checkInputs = with python3.pkgs; [
pytestCheckHook
pytest-mock
pytest-vcr
pyfakefs
];
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 ];
};
}