Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport release-24.05] python311Packages.yt-dlp-light: 2024.5.27 -> 2024.7.1 #323973

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pkgs/tools/misc/yt-dlp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
, pycryptodomex
, websockets
, mutagen
, pythonRelaxDepsHook
, requests
, secretstorage
, urllib3
Expand All @@ -25,17 +26,18 @@ buildPythonPackage rec {
# 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 = "2024.5.27";
version = "2024.7.1";
pyproject = true;

src = fetchPypi {
inherit version;
pname = "yt_dlp";
hash = "sha256-NWbA3iQNDNPRwihc5lX3LKON/GGNY01GgYsA2J1SiL4=";
hash = "sha256-6wAZR0/95peTeMB1VfoBFzz1W96QsXKgGBtXFnk6rvI=";
};

build-system = [
hatchling
pythonRelaxDepsHook
];

dependencies = [
Expand All @@ -49,6 +51,8 @@ buildPythonPackage rec {
websockets
];

pythonRelaxDeps = [ "requests" ];

# Ensure these utilities are available in $PATH:
# - ffmpeg: post-processing & transcoding support
# - rtmpdump: download files over RTMP
Expand Down