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

This commit is contained in:
Sandro 2021-11-28 02:57:41 +01:00 committed by GitHub
commit 7d3a3f55ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,15 @@
{ lib, buildPythonApplication, fetchPypi, requests, youtube-dl, pytestCheckHook }:
{ lib, buildPythonApplication, fetchPypi, requests, yt-dlp, pytestCheckHook }:
buildPythonApplication rec {
pname = "gallery_dl";
version = "1.19.2";
version = "1.19.3";
src = fetchPypi {
inherit pname version;
sha256 = "7fec9ac69582dbd9922666e6ece3142ae52dc9679a2c4a613f6ee94ad09e5f68";
sha256 = "db3973a17f1074e4f4cb99b635b94c1926bdd549263e1df909498f3c6aa93484";
};
propagatedBuildInputs = [ requests youtube-dl ];
propagatedBuildInputs = [ requests yt-dlp ];
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [