gallery-dl: 1.21.2 -> 1.22.0

https://github.com/mikf/gallery-dl/releases/tag/v1.22.0
This commit is contained in:
Mario Rodas 2022-05-25 04:20:00 +00:00
parent ad5b9771dd
commit 1eb6d6e5a2

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; {