nixpkgs/pkgs/applications/misc/gallery-dl/default.nix
2021-10-02 00:10:00 +00:00

29 lines
869 B
Nix

{ lib, buildPythonApplication, fetchPypi, requests, pytestCheckHook }:
buildPythonApplication rec {
pname = "gallery_dl";
version = "1.19.0";
src = fetchPypi {
inherit pname version;
sha256 = "ceffaa5022d76132165ca9004c1e57d7400b56c9ab3866e3bd139e2ffe38cb72";
};
propagatedBuildInputs = [ requests ];
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [
# requires network access
"--ignore=test/test_results.py"
"--ignore=test/test_downloader.py"
];
meta = with lib; {
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
homepage = "https://github.com/mikf/gallery-dl";
changelog = "https://github.com/mikf/gallery-dl/raw/v${version}/CHANGELOG.md";
license = licenses.gpl2Only;
maintainers = with maintainers; [ dawidsowa marsam ];
};
}