2021-11-27 04:20:00 +00:00
|
|
|
{ lib, buildPythonApplication, fetchPypi, requests, yt-dlp, pytestCheckHook }:
|
2019-05-01 10:21:53 +00:00
|
|
|
|
2020-11-29 14:50:32 +00:00
|
|
|
buildPythonApplication rec {
|
2019-05-01 10:21:53 +00:00
|
|
|
pname = "gallery_dl";
|
2022-06-29 02:47:25 +00:00
|
|
|
version = "1.22.3";
|
2019-05-01 10:21:53 +00:00
|
|
|
|
2020-11-29 14:50:32 +00:00
|
|
|
src = fetchPypi {
|
2019-05-01 10:21:53 +00:00
|
|
|
inherit pname version;
|
2022-06-29 02:47:25 +00:00
|
|
|
sha256 = "sha256-6nveSEpi5fdlf6ooUXFrX1WaVDOQi6mvgDGAGgwi1zc=";
|
2019-05-01 10:21:53 +00:00
|
|
|
};
|
|
|
|
|
2021-11-27 04:20:00 +00:00
|
|
|
propagatedBuildInputs = [ requests yt-dlp ];
|
2019-05-01 10:21:53 +00:00
|
|
|
|
2020-11-29 14:50:32 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2022-05-25 04:20:00 +00:00
|
|
|
|
2020-10-11 22:03:39 +00:00
|
|
|
pytestFlagsArray = [
|
|
|
|
# requires network access
|
|
|
|
"--ignore=test/test_results.py"
|
2020-10-29 03:49:39 +00:00
|
|
|
"--ignore=test/test_downloader.py"
|
2022-05-25 04:20:00 +00:00
|
|
|
|
|
|
|
# incompatible with pytestCheckHook
|
|
|
|
"--ignore=test/test_ytdl.py"
|
2020-10-11 22:03:39 +00:00
|
|
|
];
|
|
|
|
|
2020-11-29 14:50:32 +00:00
|
|
|
meta = with lib; {
|
2019-05-01 10:21:53 +00:00
|
|
|
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
|
2020-03-04 23:34:31 +00:00
|
|
|
homepage = "https://github.com/mikf/gallery-dl";
|
2021-09-08 04:20:00 +00:00
|
|
|
changelog = "https://github.com/mikf/gallery-dl/raw/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ dawidsowa marsam ];
|
2019-05-01 10:21:53 +00:00
|
|
|
};
|
|
|
|
}
|