gallery-dl: 1.27.2 -> 1.27.3

* Update gallery-dl to v1.27.3
* Add update script to simplify future updates
This commit is contained in:
Melody Renata
2024-08-10 22:31:25 -04:00
parent 619d29bb00
commit 87aa59b62c

View File

@@ -5,17 +5,18 @@
requests,
yt-dlp,
pytestCheckHook,
nix-update-script,
}:
buildPythonApplication rec {
pname = "gallery-dl";
version = "1.27.2";
version = "1.27.3";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "gallery_dl";
hash = "sha256-CTc6CBAFIxOX5Bd/hy3e65MbWyI2wFn+a6hj4ktuBjo=";
hash = "sha256-ILnnbnQiJnBBOV87mWw1xHU8DtCXIVVwRwz/PfzVSSI=";
};
propagatedBuildInputs = [
@@ -36,6 +37,8 @@ buildPythonApplication rec {
pythonImportsCheck = [ "gallery_dl" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
homepage = "https://github.com/mikf/gallery-dl";