mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
yt-dlp: init at 2021.07.21
This commit is contained in:
parent
53bd44342d
commit
e40ceba3fc
62
pkgs/tools/misc/yt-dlp/default.nix
Normal file
62
pkgs/tools/misc/yt-dlp/default.nix
Normal file
@ -0,0 +1,62 @@
|
||||
{ lib, fetchurl, buildPythonPackage
|
||||
, zip, ffmpeg, rtmpdump, phantomjs2, atomicparsley, pycryptodome, pandoc
|
||||
, fetchFromGitHub
|
||||
, websockets, mutagen
|
||||
, ffmpegSupport ? true
|
||||
, rtmpSupport ? true
|
||||
, phantomjsSupport ? false
|
||||
, hlsEncryptedSupport ? true
|
||||
, installShellFiles, makeWrapper }:
|
||||
|
||||
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.
|
||||
version = "2021.07.21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yt-dlp";
|
||||
repo = "yt-dlp";
|
||||
rev = version;
|
||||
sha256 = "ziOW52LJUBe0j7ru8GYgiUCE6YJeBTTjm+H6W8EZjuY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
||||
buildInputs = [ zip pandoc ];
|
||||
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)";
|
||||
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.
|
||||
'';
|
||||
license = licenses.publicDomain;
|
||||
maintainers = with maintainers; [ mkg20001 ];
|
||||
};
|
||||
}
|
@ -28660,6 +28660,10 @@ with pkgs;
|
||||
|
||||
youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
|
||||
|
||||
yt-dlp = with python3Packages; toPythonApplication yt-dlp;
|
||||
|
||||
yt-dlp-light = with python3Packages; toPythonApplication yt-dlp-light;
|
||||
|
||||
youtube-viewer = perlPackages.WWWYoutubeViewer;
|
||||
|
||||
ytalk = callPackage ../applications/networking/instant-messengers/ytalk { };
|
||||
|
@ -9529,6 +9529,13 @@ in {
|
||||
phantomjsSupport = false;
|
||||
};
|
||||
|
||||
yt-dlp = callPackage ../tools/misc/yt-dlp { };
|
||||
|
||||
yt-dlp-light = callPackage ../tools/misc/yt-dlp {
|
||||
ffmpegSupport = false;
|
||||
phantomjsSupport = false;
|
||||
};
|
||||
|
||||
youtube-search = callPackage ../development/python-modules/youtube-search { };
|
||||
|
||||
youtube-transcript-api = callPackage ../development/python-modules/youtube-transcript-api { };
|
||||
|
Loading…
Reference in New Issue
Block a user