depot/third_party/nixpkgs/pkgs/development/python-modules/playwrightcapture/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

84 lines
1.5 KiB
Nix

{
lib,
aiohttp,
aiohttp-socks,
beautifulsoup4,
buildPythonPackage,
dateparser,
fetchFromGitHub,
playwright-stealth,
playwright,
poetry-core,
puremagic,
pydub,
pythonOlder,
pythonRelaxDepsHook,
pytz,
requests,
setuptools,
speechrecognition,
tzdata,
w3lib,
}:
buildPythonPackage rec {
pname = "playwrightcapture";
version = "1.24.11";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Lookyloo";
repo = "PlaywrightCapture";
rev = "refs/tags/v${version}";
hash = "sha256-aDD+eovq6V7c69ORqekcfmDgTGJqvd2lYMIQ2+9TFYY=";
};
pythonRelaxDeps = [
"beautifulsoup4"
"playwright"
"setuptools"
"tzdata"
];
build-system = [ poetry-core ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
aiohttp
aiohttp-socks
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 ];
};
}