mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
python312Packages.yt-dlp-dearrow: init at 2023.01.01
This commit is contained in:
parent
9cb99744c3
commit
0a23f13845
32
pkgs/development/python-modules/yt-dlp-dearrow/default.nix
Normal file
32
pkgs/development/python-modules/yt-dlp-dearrow/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "yt-dlp-dearrow";
|
||||
version = "2023.01.01-unstable-2024-01-13"; # setup.cfg
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "QuantumWarpCode";
|
||||
repo = "yt-dlp-dearrow";
|
||||
rev = "2e46eca7b2242d8c9765bf2d12f92270b694be64"; # no tags
|
||||
hash = "sha256-Ubi1kn/1FqkuwnxToBuSsAfCYWiNCTl/EUD8eeG3MSY=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
pythonImportsCheck = [ "yt_dlp_plugins" ];
|
||||
|
||||
meta = {
|
||||
description = "Post-processor plugin to use DeArrow video titles in YT-DLP";
|
||||
homepage = "https://github.com/QuantumWarpCode/yt-dlp-dearrow";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ sigmanificient ];
|
||||
};
|
||||
}
|
@ -17638,6 +17638,8 @@ self: super: with self; {
|
||||
rtmpSupport = false;
|
||||
};
|
||||
|
||||
yt-dlp-dearrow = callPackage ../development/python-modules/yt-dlp-dearrow { };
|
||||
|
||||
youtube-search = callPackage ../development/python-modules/youtube-search { };
|
||||
|
||||
youtube-search-python = callPackage ../development/python-modules/youtube-search-python { };
|
||||
|
Loading…
Reference in New Issue
Block a user