2021-08-28 02:04:20 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, ffmpeg, rtmpdump, phantomjs2, atomicparsley, pycryptodome
|
2021-08-10 06:49:34 +02:00
|
|
|
, websockets, mutagen
|
|
|
|
, ffmpegSupport ? true
|
|
|
|
, rtmpSupport ? true
|
|
|
|
, phantomjsSupport ? false
|
|
|
|
, hlsEncryptedSupport ? true
|
2021-08-28 02:04:20 +02:00
|
|
|
}:
|
2021-08-10 06:49:34 +02: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.
|
2021-08-24 11:10:27 +02:00
|
|
|
version = "2021.08.10";
|
2021-08-10 06:49:34 +02:00
|
|
|
|
2021-08-28 02:04:20 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname;
|
|
|
|
version = builtins.replaceStrings [ ".0" ] [ "." ] version;
|
|
|
|
sha256 = "8da1bf4dc4641d37d137443c4783109ee8393caad5e0d270d9d1d534e8f25240";
|
2021-08-10 06:49:34 +02:00
|
|
|
};
|
|
|
|
|
2021-08-28 02:04:20 +02:00
|
|
|
# build_lazy_extractors assumes this directory exists but it is not present in
|
|
|
|
# the PyPI package
|
|
|
|
postPatch = ''
|
|
|
|
mkdir -p ytdlp_plugins/extractor
|
|
|
|
'';
|
|
|
|
|
2021-08-10 06:49:34 +02:00
|
|
|
propagatedBuildInputs = [ websockets mutagen ]
|
|
|
|
++ lib.optional hlsEncryptedSupport pycryptodome;
|
|
|
|
|
|
|
|
# Ensure these utilities are available in $PATH:
|
|
|
|
# - ffmpeg: post-processing & transcoding support
|
|
|
|
# - rtmpdump: download files over RTMP
|
|
|
|
# - atomicparsley: embedding thumbnails
|
|
|
|
makeWrapperArgs = let
|
|
|
|
packagesToBinPath = [ atomicparsley ]
|
|
|
|
++ lib.optional ffmpegSupport ffmpeg
|
|
|
|
++ lib.optional rtmpSupport rtmpdump
|
|
|
|
++ lib.optional phantomjsSupport phantomjs2;
|
|
|
|
in [ ''--prefix PATH : "${lib.makeBinPath packagesToBinPath}"'' ];
|
|
|
|
|
|
|
|
setupPyBuildFlags = [
|
|
|
|
"build_lazy_extractors"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Requires network
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
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 02:04:20 +02:00
|
|
|
changelog = "https://github.com/yt-dlp/yt-dlp/raw/${version}/Changelog.md";
|
2021-08-10 06:49:34 +02: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 02:04:20 +02:00
|
|
|
license = licenses.unlicense;
|
2021-08-10 06:49:34 +02:00
|
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
|
|
};
|
|
|
|
}
|