nixpkgs/pkgs/applications/misc/gallery-dl/default.nix

22 lines
616 B
Nix
Raw Normal View History

2019-05-01 11:21:53 +01:00
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "gallery_dl";
2019-08-27 15:33:00 +01:00
version = "1.10.2";
2019-05-01 11:21:53 +01:00
src = python3Packages.fetchPypi {
inherit pname version;
2019-08-27 15:33:00 +01:00
sha256 = "09q9l747vv6nrkscj08dv970qs6nm2azjcm015xf3bd5ab91l44r";
2019-05-01 11:21:53 +01:00
};
doCheck = false;
propagatedBuildInputs = with python3Packages; [ requests ];
meta = {
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
homepage = https://github.com/mikf/gallery-dl;
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ dawidsowa ];
};
}