22 lines
618 B
Nix
22 lines
618 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "gallery_dl";
|
|
version = "1.13.6";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17hgryj8qsxcx3c96ir25q0wsh5q0s6c6fb33lqfdbrfxrjcixbk";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|