2021-09-02 21:49:03 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, ffmpeg
|
|
|
|
, rtmpdump
|
|
|
|
, phantomjs2
|
|
|
|
, atomicparsley
|
2021-10-10 19:06:35 +01:00
|
|
|
, pycryptodomex
|
2021-09-02 21:49:03 +01:00
|
|
|
, websockets
|
|
|
|
, mutagen
|
2021-08-10 05:49:34 +01:00
|
|
|
, ffmpegSupport ? true
|
|
|
|
, rtmpSupport ? true
|
|
|
|
, phantomjsSupport ? false
|
|
|
|
, hlsEncryptedSupport ? true
|
2021-09-20 09:50:53 +01:00
|
|
|
, withAlias ? false # Provides bin/youtube-dl for backcompat
|
2021-08-28 01:04:20 +01:00
|
|
|
}:
|
2021-08-10 05:49:34 +01:00
|
|
|
|
|
|
|
buildPythonPackage 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.
|
2022-02-04 07:30:37 +00:00
|
|
|
version = "2022.2.4";
|
2021-08-10 05:49:34 +01:00
|
|
|
|
2021-08-28 01:04:20 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname;
|
|
|
|
version = builtins.replaceStrings [ ".0" ] [ "." ] version;
|
2022-02-04 07:30:37 +00:00
|
|
|
sha256 = "sha256-gbUO18+c/MBC2PWhrS0c17E8SLNsB/rxiAaW6sCn3bU=";
|
2021-08-10 05:49:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ websockets mutagen ]
|
2021-10-10 19:06:35 +01:00
|
|
|
++ lib.optional hlsEncryptedSupport pycryptodomex;
|
2021-08-10 05:49:34 +01:00
|
|
|
|
|
|
|
# Ensure these utilities are available in $PATH:
|
|
|
|
# - ffmpeg: post-processing & transcoding support
|
|
|
|
# - rtmpdump: download files over RTMP
|
|
|
|
# - atomicparsley: embedding thumbnails
|
2021-09-02 21:49:03 +01:00
|
|
|
makeWrapperArgs =
|
|
|
|
let
|
2021-08-10 05:49:34 +01:00
|
|
|
packagesToBinPath = [ atomicparsley ]
|
|
|
|
++ lib.optional ffmpegSupport ffmpeg
|
|
|
|
++ lib.optional rtmpSupport rtmpdump
|
|
|
|
++ lib.optional phantomjsSupport phantomjs2;
|
2021-09-02 21:49:03 +01:00
|
|
|
in
|
|
|
|
[ ''--prefix PATH : "${lib.makeBinPath packagesToBinPath}"'' ];
|
2021-08-10 05:49:34 +01:00
|
|
|
|
|
|
|
setupPyBuildFlags = [
|
|
|
|
"build_lazy_extractors"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Requires network
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-09-20 09:50:53 +01:00
|
|
|
postInstall = lib.optionalString withAlias ''
|
|
|
|
ln -s "$out/bin/yt-dlp" "$out/bin/youtube-dl"
|
|
|
|
'';
|
|
|
|
|
2021-08-10 05:49:34 +01:00
|
|
|
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)";
|
2021-08-28 01:04:20 +01:00
|
|
|
changelog = "https://github.com/yt-dlp/yt-dlp/raw/${version}/Changelog.md";
|
2021-08-10 05:49:34 +01:00
|
|
|
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.
|
|
|
|
'';
|
2021-08-28 01:04:20 +01:00
|
|
|
license = licenses.unlicense;
|
2021-08-10 05:49:34 +01:00
|
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
|
|
};
|
|
|
|
}
|