1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 01:46:30 +00:00
nixpkgs/pkgs/applications/misc/gallery-dl/default.nix
2021-10-27 00:31:21 -05:00

29 lines
869 B
Nix

{ lib, buildPythonApplication, fetchPypi, requests, pytestCheckHook }:
buildPythonApplication rec {
pname = "gallery_dl";
version = "1.19.1";
src = fetchPypi {
inherit pname version;
sha256 = "ea1a7bf908507a87edffde6d6be93b8859ab0832ca788b61690a13aa5dd52216";
};
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 ];
};
}