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

22 lines
618 B
Nix
Raw Normal View History

2019-05-01 03:21:53 -07:00
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "gallery_dl";
2020-03-30 20:49:31 -07:00
version = "1.13.3";
2019-05-01 03:21:53 -07:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-03-30 20:49:31 -07:00
sha256 = "0nhbhli45i2xhkmyj9mpg8fn1l58y2zmr6nnnnms557wpdpg112x";
2019-05-01 03:21:53 -07:00
};
doCheck = false;
propagatedBuildInputs = with python3Packages; [ requests ];
meta = {
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
2020-03-04 15:34:31 -08:00
homepage = "https://github.com/mikf/gallery-dl";
2019-05-01 03:21:53 -07:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ dawidsowa ];
};
}