spotdl: init at 3.5.0
This commit is contained in:
parent
57497a9a41
commit
59c1caf6d5
|
@ -0,0 +1,47 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8269,6 +8269,8 @@ in
|
||||||
|
|
||||||
splot = haskell.lib.justStaticExecutables haskellPackages.splot;
|
splot = haskell.lib.justStaticExecutables haskellPackages.splot;
|
||||||
|
|
||||||
|
spotdl = callPackage ../tools/audio/spotdl { };
|
||||||
|
|
||||||
squashfsTools = callPackage ../tools/filesystems/squashfs { };
|
squashfsTools = callPackage ../tools/filesystems/squashfs { };
|
||||||
|
|
||||||
squashfs-tools-ng = callPackage ../tools/filesystems/squashfs-tools-ng { };
|
squashfs-tools-ng = callPackage ../tools/filesystems/squashfs-tools-ng { };
|
||||||
|
|
Loading…
Reference in New Issue