Merge pull request #174821 from marsam/update-gallery-dl

gallery-dl: 1.21.2 -> 1.22.0
This commit is contained in:
Mario Rodas 2022-05-26 20:15:34 -05:00 committed by GitHub
commit 2abc6062e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,20 +2,24 @@
buildPythonApplication rec {
pname = "gallery_dl";
version = "1.21.2";
version = "1.22.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-xn+Y8WOIH6zkExO3ZNya3ZBwh90oSjSk00xfO0c23To=";
sha256 = "sha256-7gslntYAjH2nSyVKjofC2utjpzQo3aNVD1w5StHk288=";
};
propagatedBuildInputs = [ requests yt-dlp ];
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [
# requires network access
"--ignore=test/test_results.py"
"--ignore=test/test_downloader.py"
# incompatible with pytestCheckHook
"--ignore=test/test_ytdl.py"
];
meta = with lib; {