depot/third_party/nixpkgs/pkgs/development/python-modules/yt-dlp-dearrow/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

32 lines
788 B
Nix

{
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 ];
};
}