Merge pull request #302958 from fabaff/yt-dlp-bump

python312Packages.yt-dlp: 2024.3.10 -> 2024.4.9
This commit is contained in:
Mario Rodas 2024-04-09 19:22:15 -05:00 committed by GitHub
commit af1145bcfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,20 +25,20 @@ buildPythonPackage rec {
# The websites yt-dlp deals with are a very moving target. That means that # 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 # downloads break constantly. Because of that, updates should always be backported
# to the latest stable release. # to the latest stable release.
version = "2024.3.10"; version = "2024.4.9";
pyproject = true; pyproject = true;
src = fetchPypi { src = fetchPypi {
inherit version; inherit version;
pname = "yt_dlp"; pname = "yt_dlp";
hash = "sha256-bnTLFKadvrhyyO9OC4u+0u6EbsYzUTzzEkp0wfrtwHs="; hash = "sha256-fukFcrTTE7WCuZyJ5OzPd5tX/1TtwzGHPGs/unf6qLA=";
}; };
nativeBuildInputs = [ build-system = [
hatchling hatchling
]; ];
propagatedBuildInputs = [ dependencies = [
brotli brotli
certifi certifi
mutagen mutagen
@ -86,6 +86,7 @@ buildPythonPackage rec {
youtube-dl is released to the public domain, which means youtube-dl is released to the public domain, which means
you can modify it, redistribute it or use it however you like. you can modify it, redistribute it or use it however you like.
''; '';
changelog = "https://github.com/yt-dlp/yt-dlp/releases/tag/${version}";
license = licenses.unlicense; license = licenses.unlicense;
maintainers = with maintainers; [ mkg20001 SuperSandro2000 marsam ]; maintainers = with maintainers; [ mkg20001 SuperSandro2000 marsam ];
mainProgram = "yt-dlp"; mainProgram = "yt-dlp";