Nixos: Move deprecated modules/derivation to separate folder
This commit is contained in:
99
derivations/1_deprecated/spotdl-4_1_6/default.nix
Normal file
99
derivations/1_deprecated/spotdl-4_1_6/default.nix
Normal file
@ -0,0 +1,99 @@
|
||||
{
|
||||
lib,
|
||||
python310,
|
||||
fetchFromGitHub,
|
||||
ffmpeg,
|
||||
}:
|
||||
python310.pkgs.buildPythonApplication rec {
|
||||
pname = "spotdl";
|
||||
version = "4.1.6";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "spotDL";
|
||||
repo = "spotify-downloader";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-sKkhZqn386iOKkZ3pzz7YxBPNAfEK9M0Agu+yR6+HsA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python310.pkgs; [
|
||||
poetry-core
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = true;
|
||||
|
||||
propagatedBuildInputs = with python310.pkgs; [
|
||||
setuptools
|
||||
spotipy
|
||||
ytmusicapi
|
||||
pytube
|
||||
yt-dlp
|
||||
mutagen
|
||||
rich
|
||||
beautifulsoup4
|
||||
requests
|
||||
rapidfuzz
|
||||
python-slugify
|
||||
uvicorn
|
||||
pydantic
|
||||
fastapi
|
||||
platformdirs
|
||||
pykakasi
|
||||
syncedlyrics
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python310.pkgs; [
|
||||
pytestCheckHook
|
||||
pytest-mock
|
||||
pytest-vcr
|
||||
pyfakefs
|
||||
pytest-subprocess
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$TMPDIR
|
||||
'';
|
||||
|
||||
disabledTestPaths = [
|
||||
# require networking
|
||||
"tests/test_init.py"
|
||||
"tests/test_matching.py"
|
||||
"tests/utils/test_m3u.py"
|
||||
"tests/utils/test_metadata.py"
|
||||
"tests/utils/test_search.py"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# require networking
|
||||
"test_album_from_string"
|
||||
"test_album_from_url"
|
||||
"test_album_length"
|
||||
"test_artist_from_url"
|
||||
"test_artist_from_string"
|
||||
"test_convert"
|
||||
"test_download_ffmpeg"
|
||||
"test_download_song"
|
||||
"test_playlist_from_string"
|
||||
"test_playlist_from_url"
|
||||
"test_playlist_length"
|
||||
"test_preload_song"
|
||||
"test_song_from_search_term"
|
||||
"test_song_from_url"
|
||||
];
|
||||
|
||||
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";
|
||||
changelog = "https://github.com/spotDL/spotify-downloader/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [dotlambda];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user