nixpkgs/pkgs/applications/misc/gallery-dl/default.nix

29 lines
807 B
Nix
Raw Normal View History

2020-11-29 14:50:32 +00:00
{ lib, buildPythonApplication, fetchPypi, requests, pytestCheckHook }:
2019-05-01 11:21:53 +01:00
2020-11-29 14:50:32 +00:00
buildPythonApplication rec {
2019-05-01 11:21:53 +01:00
pname = "gallery_dl";
2021-02-15 20:47:26 +00:00
version = "1.16.5";
2019-05-01 11:21:53 +01:00
2020-11-29 14:50:32 +00:00
src = fetchPypi {
2019-05-01 11:21:53 +01:00
inherit pname version;
2021-02-15 20:47:26 +00:00
sha256 = "fb8c927630b292abf5052f8f75c3eebccbdffa609566768d4dc4d9665df91e68";
2019-05-01 11:21:53 +01:00
};
2020-11-29 14:50:32 +00:00
propagatedBuildInputs = [ requests ];
2019-05-01 11:21:53 +01:00
2020-11-29 14:50:32 +00:00
checkInputs = [ pytestCheckHook ];
2020-10-11 23:03:39 +01:00
pytestFlagsArray = [
# requires network access
"--ignore=test/test_results.py"
"--ignore=test/test_downloader.py"
2020-10-11 23:03:39 +01:00
];
2020-11-29 14:50:32 +00:00
meta = with lib; {
2019-05-01 11:21:53 +01: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";
2020-11-29 14:50:32 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ dawidsowa ];
platforms = platforms.unix;
2019-05-01 11:21:53 +01:00
};
}