about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authordawidsowa <dawid_sowa@posteo.net>2020-10-29 04:49:39 +0100
committerGitHub <noreply@github.com>2020-10-28 22:49:39 -0500
commitc69407d60608b239a8f90f04e66fc8f9aa91c7db (patch)
treef7c18d4d45140c86767eec96251b2e3baecbbfbd /pkgs/applications/misc
parent392e56b1ff86b034d5e813cff09fcf0fb85912f3 (diff)
gallery-dl: 1.15.1 -> 1.15.2 (#101977)
* gallery-dl: 1.15.1 -> 1.15.2
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/gallery-dl/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/misc/gallery-dl/default.nix b/pkgs/applications/misc/gallery-dl/default.nix
index ffe7d4ec47deb..8135dce4d7a3e 100644
--- a/pkgs/applications/misc/gallery-dl/default.nix
+++ b/pkgs/applications/misc/gallery-dl/default.nix
@@ -2,11 +2,11 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "gallery_dl";
-  version = "1.15.1";
+  version = "1.15.2";
 
   src = python3Packages.fetchPypi {
     inherit pname version;
-    sha256 = "1pysh0gz3f3dxk5bfkzaii4myrgik396mf6vlks50inpbnslmqsl";
+    sha256 = "0f2d1ixg0ir7ispxxggv378dc0m55k9y19075swf893maxf07f35";
   };
 
   propagatedBuildInputs = with python3Packages; [ requests ];
@@ -15,6 +15,7 @@ python3Packages.buildPythonApplication rec {
   pytestFlagsArray = [
     # requires network access
     "--ignore=test/test_results.py"
+    "--ignore=test/test_downloader.py"
   ];
 
   meta = {