3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #152620 from SuperSandro2000/yt-dlp

yt-dlp: 2021.12.25 -> 2021.12.27
This commit is contained in:
Mario Rodas 2021-12-29 18:52:57 -05:00 committed by GitHub
commit 81e3fc05d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,12 +20,12 @@ 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 = "2021.12.25";
version = "2021.12.27";
src = fetchPypi {
inherit pname;
version = builtins.replaceStrings [ ".0" ] [ "." ] version;
sha256 = "sha256-h8E1F8VVEM+sqGFyYN43YCkDXbwvhxWnQmulZS6P4hI=";
sha256 = "sha256-IkTfN1l1FIfnlrI7ZyFr7pjnCDKjpDwlJrCw4Lv7y1s=";
};
propagatedBuildInputs = [ websockets mutagen ]