Merge pull request #105367 from siraben/gallery-dl-update

gallery-dl: 1.15.2 -> 1.15.4
This commit is contained in:
Maximilian Bosch 2020-11-29 18:16:48 +01:00 committed by GitHub
commit a7573a0d7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 11 deletions

View File

@ -1,27 +1,28 @@
{ lib, python3Packages }: { lib, buildPythonApplication, fetchPypi, requests, pytestCheckHook }:
python3Packages.buildPythonApplication rec { buildPythonApplication rec {
pname = "gallery_dl"; pname = "gallery_dl";
version = "1.15.2"; version = "1.15.4";
src = python3Packages.fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0f2d1ixg0ir7ispxxggv378dc0m55k9y19075swf893maxf07f35"; sha256 = "0byn1ggrb9yg9d29205q312v95jy66qp4z384kys8cmrd3mky111";
}; };
propagatedBuildInputs = with python3Packages; [ requests ]; propagatedBuildInputs = [ requests ];
checkInputs = with python3Packages; [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ pytestFlagsArray = [
# requires network access # requires network access
"--ignore=test/test_results.py" "--ignore=test/test_results.py"
"--ignore=test/test_downloader.py" "--ignore=test/test_downloader.py"
]; ];
meta = { meta = with lib; {
description = "Command-line program to download image-galleries and -collections from several image hosting sites"; description = "Command-line program to download image-galleries and -collections from several image hosting sites";
homepage = "https://github.com/mikf/gallery-dl"; homepage = "https://github.com/mikf/gallery-dl";
license = lib.licenses.gpl2; license = licenses.gpl2;
maintainers = with lib.maintainers; [ dawidsowa ]; maintainers = with maintainers; [ dawidsowa ];
platforms = platforms.unix;
}; };
} }

View File

@ -4070,7 +4070,7 @@ in
galen = callPackage ../development/tools/galen {}; galen = callPackage ../development/tools/galen {};
gallery-dl = callPackage ../applications/misc/gallery-dl { }; gallery-dl = python3Packages.callPackage ../applications/misc/gallery-dl { };
gandi-cli = callPackage ../tools/networking/gandi-cli { }; gandi-cli = callPackage ../tools/networking/gandi-cli { };