106 lines
2.8 KiB
Nix
106 lines
2.8 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
ffmpeg-headless,
|
|
rtmpdump,
|
|
atomicparsley,
|
|
atomicparsleySupport ? true,
|
|
ffmpegSupport ? true,
|
|
rtmpSupport ? true,
|
|
withAlias ? false, # Provides bin/youtube-dl for backcompat
|
|
update-python-libraries,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "yt-dlp";
|
|
# The websites yt-dlp deals with are a very moving target. That means that
|
|
# downloads break constantly. Because of that, updates should always be backported
|
|
# to the latest stable release.
|
|
version = "2024.11.4";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "yt_dlp";
|
|
hash = "sha256-7SBMG2G8Vj4TREd2bRqzQxc1QHmeE+u5U+iHzn3PaGU=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
hatchling
|
|
];
|
|
|
|
# expose optional-dependencies, but provide all features
|
|
dependencies = lib.flatten (lib.attrValues optional-dependencies);
|
|
|
|
optional-dependencies = {
|
|
default = with python3Packages; [
|
|
brotli
|
|
certifi
|
|
mutagen
|
|
pycryptodomex
|
|
requests
|
|
urllib3
|
|
websockets
|
|
];
|
|
curl-cffi = [ python3Packages.curl-cffi ];
|
|
secretstorage = with python3Packages; [
|
|
cffi
|
|
secretstorage
|
|
];
|
|
};
|
|
|
|
pythonRelaxDeps = [ "websockets" ];
|
|
|
|
# Ensure these utilities are available in $PATH:
|
|
# - ffmpeg: post-processing & transcoding support
|
|
# - rtmpdump: download files over RTMP
|
|
# - atomicparsley: embedding thumbnails
|
|
makeWrapperArgs =
|
|
let
|
|
packagesToBinPath =
|
|
[ ]
|
|
++ lib.optional atomicparsleySupport atomicparsley
|
|
++ lib.optional ffmpegSupport ffmpeg-headless
|
|
++ lib.optional rtmpSupport rtmpdump;
|
|
in
|
|
lib.optionals (packagesToBinPath != [ ]) [
|
|
''--prefix PATH : "${lib.makeBinPath packagesToBinPath}"''
|
|
];
|
|
|
|
setupPyBuildFlags = [
|
|
"build_lazy_extractors"
|
|
];
|
|
|
|
# Requires network
|
|
doCheck = false;
|
|
|
|
postInstall = lib.optionalString withAlias ''
|
|
ln -s "$out/bin/yt-dlp" "$out/bin/youtube-dl"
|
|
'';
|
|
|
|
passthru.updateScript = [
|
|
update-python-libraries
|
|
(toString ./.)
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/yt-dlp/yt-dlp/";
|
|
description = "Command-line tool to download videos from YouTube.com and other sites (youtube-dl fork)";
|
|
longDescription = ''
|
|
yt-dlp is a youtube-dl fork based on the now inactive youtube-dlc.
|
|
|
|
youtube-dl is a small, Python-based command-line program
|
|
to download videos from YouTube.com and a few more sites.
|
|
youtube-dl is released to the public domain, which means
|
|
you can modify it, redistribute it or use it however you like.
|
|
'';
|
|
changelog = "https://github.com/yt-dlp/yt-dlp/blob/HEAD/Changelog.md";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [
|
|
mkg20001
|
|
SuperSandro2000
|
|
];
|
|
mainProgram = "yt-dlp";
|
|
};
|
|
}
|