5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
82 lines
1.4 KiB
Nix
82 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
aiohttp-socks,
|
|
beautifulsoup4,
|
|
buildPythonPackage,
|
|
dateparser,
|
|
fetchFromGitHub,
|
|
playwright-stealth,
|
|
playwright,
|
|
poetry-core,
|
|
puremagic,
|
|
pydub,
|
|
pythonOlder,
|
|
pytz,
|
|
requests,
|
|
setuptools,
|
|
speechrecognition,
|
|
tzdata,
|
|
w3lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "playwrightcapture";
|
|
version = "1.25.9";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lookyloo";
|
|
repo = "PlaywrightCapture";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-p/Zy4roRG0xdk2w5O0CdYIr15D+wumiuGlCNxrHHWdw=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"beautifulsoup4"
|
|
"playwright"
|
|
"setuptools"
|
|
"tzdata"
|
|
];
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
|
|
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 ];
|
|
};
|
|
}
|