5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
80 lines
1.4 KiB
Nix
80 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
beautifulsoup4,
|
|
buildPythonPackage,
|
|
dateparser,
|
|
fetchFromGitHub,
|
|
playwright,
|
|
playwright-stealth,
|
|
poetry-core,
|
|
puremagic,
|
|
pydub,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
pytz,
|
|
requests,
|
|
setuptools,
|
|
speechrecognition,
|
|
tzdata,
|
|
w3lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "playwrightcapture";
|
|
version = "1.24.8";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lookyloo";
|
|
repo = "PlaywrightCapture";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-91EVR4cW383HiwcAg4BuhuC5jlwLwP1IFodD1iIo1j4=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"beautifulsoup4"
|
|
"playwright"
|
|
"setuptools"
|
|
"tzdata"
|
|
];
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
|
|
dependencies = [
|
|
beautifulsoup4
|
|
dateparser
|
|
playwright
|
|
playwright-stealth
|
|
puremagic
|
|
pytz
|
|
requests
|
|
setuptools
|
|
tzdata
|
|
w3lib
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
recaptcha = [
|
|
speechrecognition
|
|
pydub
|
|
requests
|
|
];
|
|
};
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "playwrightcapture" ];
|
|
|
|
meta = with lib; {
|
|
description = "Capture a URL with Playwright";
|
|
homepage = "https://github.com/Lookyloo/PlaywrightCapture";
|
|
changelog = "https://github.com/Lookyloo/PlaywrightCapture/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|