yt-dlp: 2022.3.8.2 → 2022.04.08

This commit is contained in:
Scott Worley 2022-04-16 14:54:14 -07:00
parent 75ad56bdc9
commit 7833517adc

View file

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, brotli , brotli
, certifi
, ffmpeg , ffmpeg
, rtmpdump , rtmpdump
, phantomjs2 , phantomjs2
@ -20,15 +21,15 @@ 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 = "2022.3.8.2"; version = "2022.04.08";
src = fetchPypi { src = fetchPypi {
inherit pname; inherit pname;
version = builtins.replaceStrings [ ".0" ] [ "." ] version; version = builtins.replaceStrings [ ".0" ] [ "." ] version;
sha256 = "sha256-aFRleMGObOh0ULU3adXVt/WiPlIJeEl222x8y/eVSyE="; sha256 = "sha256-h1jQFlCdRXS5D73pdapwra73HtXnoZUUFYj21pRSBbo=";
}; };
propagatedBuildInputs = [ brotli mutagen pycryptodomex websockets ]; propagatedBuildInputs = [ brotli certifi mutagen pycryptodomex websockets ];
# Ensure these utilities are available in $PATH: # Ensure these utilities are available in $PATH:
# - ffmpeg: post-processing & transcoding support # - ffmpeg: post-processing & transcoding support