mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
e2007a9e3b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gallery_dl/versions
22 lines
616 B
Nix
22 lines
616 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "gallery_dl";
|
|
version = "1.10.1";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "174d2q7w0kwa6xx9k3bl5gdwmk0gklvch963g7vl979wqsf7nskw";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|