mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
101 lines
2.0 KiB
Nix
101 lines
2.0 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
, fetchFromGitHub
|
|
, ffmpeg
|
|
}:
|
|
|
|
let
|
|
python = python3;
|
|
in python.pkgs.buildPythonApplication rec {
|
|
pname = "spotdl";
|
|
version = "4.2.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spotDL";
|
|
repo = "spotify-downloader";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-U0UA94t7WdCeU9Y86rcnT8BzXVx8ryhD3MTJxmNBYcc=";
|
|
};
|
|
|
|
nativeBuildInputs = with python.pkgs; [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
spotipy
|
|
ytmusicapi
|
|
pytube
|
|
yt-dlp
|
|
mutagen
|
|
rich
|
|
beautifulsoup4
|
|
requests
|
|
rapidfuzz
|
|
python-slugify
|
|
uvicorn
|
|
pydantic
|
|
fastapi
|
|
platformdirs
|
|
pykakasi
|
|
syncedlyrics
|
|
typing-extensions
|
|
soundcloud-v2
|
|
bandcamp-api
|
|
setuptools # for pkg_resources
|
|
] ++ python-slugify.optional-dependencies.unidecode;
|
|
|
|
nativeCheckInputs = with python.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/providers/lyrics"
|
|
"tests/types"
|
|
"tests/utils/test_github.py"
|
|
"tests/utils/test_m3u.py"
|
|
"tests/utils/test_metadata.py"
|
|
"tests/utils/test_search.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# require networking
|
|
"test_convert"
|
|
"test_download_ffmpeg"
|
|
"test_download_song"
|
|
"test_preload_song"
|
|
"test_yt_get_results"
|
|
"test_yt_search"
|
|
"test_ytm_search"
|
|
"test_ytm_get_results"
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix" "PATH" ":" (lib.makeBinPath [ ffmpeg ])
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Download your Spotify playlists and songs along with album art and metadata";
|
|
mainProgram = "spotdl";
|
|
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 ];
|
|
};
|
|
}
|