Merge pull request #196974 from techknowlogick/add-shot-scraper
shot-scraper: init at 1.1.1
This commit is contained in:
commit
b6b51871b5
38
pkgs/tools/graphics/shot-scraper/default.nix
Normal file
38
pkgs/tools/graphics/shot-scraper/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "shot-scraper";
|
||||
version = "1.1.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = python3.pkgs.pythonOlder "3.6";
|
||||
|
||||
src = python3.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-YfWiy44rCRXK5xVkmA9X7pAlDhZrk6nS9vbC2eYvjbg=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
click
|
||||
click-default-group
|
||||
playwright
|
||||
pyyaml
|
||||
];
|
||||
|
||||
# skip tests due to network access
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"shot_scraper"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A command-line utility for taking automated screenshots of websites";
|
||||
homepage = "https://github.com/simonw/shot-scraper";
|
||||
changelog = "https://github.com/simonw/shot-scraper/releases/tag/${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ techknowlogick ];
|
||||
};
|
||||
}
|
@ -33241,6 +33241,8 @@ with pkgs;
|
||||
|
||||
shotgun = callPackage ../tools/graphics/shotgun { };
|
||||
|
||||
shot-scraper = callPackage ../tools/graphics/shot-scraper { };
|
||||
|
||||
shutter = callPackage ../applications/graphics/shutter { };
|
||||
|
||||
sic-image-cli = callPackage ../tools/graphics/sic-image-cli { };
|
||||
|
Loading…
Reference in New Issue
Block a user