forked from mirrors/nixpkgs
gallery-dl: init at 1.8.2
This commit is contained in:
parent
e97da1177f
commit
715002eaf7
21
pkgs/applications/misc/gallery-dl/default.nix
Normal file
21
pkgs/applications/misc/gallery-dl/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "gallery_dl";
|
||||
version = "1.8.2";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "6c5995b7d24dfaae7bdf71b9261e5044b01adbd5d5302aaff9ac4a30bbceedb6";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -3008,6 +3008,8 @@ in
|
|||
|
||||
galen = callPackage ../development/tools/galen {};
|
||||
|
||||
gallery-dl = callPackage ../applications/misc/gallery-dl { };
|
||||
|
||||
gandi-cli = callPackage ../tools/networking/gandi-cli { };
|
||||
|
||||
gandom-fonts = callPackage ../data/fonts/gandom-fonts { };
|
||||
|
|
Loading…
Reference in a new issue