2020-11-30 08:33:03 +00:00
|
|
|
{ lib, buildPythonApplication, fetchPypi, requests, pytestCheckHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
buildPythonApplication rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "gallery_dl";
|
2021-10-28 06:52:43 +00:00
|
|
|
version = "1.19.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
src = fetchPypi {
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit pname version;
|
2021-10-28 06:52:43 +00:00
|
|
|
sha256 = "ea1a7bf908507a87edffde6d6be93b8859ab0832ca788b61690a13aa5dd52216";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
propagatedBuildInputs = [ requests ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2020-10-16 20:44:37 +00:00
|
|
|
pytestFlagsArray = [
|
|
|
|
# requires network access
|
|
|
|
"--ignore=test/test_results.py"
|
2020-11-03 02:18:15 +00:00
|
|
|
"--ignore=test/test_downloader.py"
|
2020-10-16 20:44:37 +00:00
|
|
|
];
|
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
|
|
|
|
homepage = "https://github.com/mikf/gallery-dl";
|
2021-09-18 10:52:07 +00:00
|
|
|
changelog = "https://github.com/mikf/gallery-dl/raw/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ dawidsowa marsam ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|