1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
{
lib,
appdirs,
buildPythonPackage,
certifi,
fetchFromGitHub,
importlib-metadata,
poetry-core,
pyee,
pytest-xdist,
pytestCheckHook,
syncer,
tqdm,
urllib3,
websockets,
}:
buildPythonPackage rec {
pname = "pyppeteer";
version = "1.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "pyppeteer";
repo = "pyppeteer";
tag = version;
hash = "sha256-izMaWtJdkLHMQbyq7o7n46xB8dOHXZ5uO0UXt+twjL4=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'pyee = "^8.1.0"' 'pyee = "*"' \
--replace 'urllib3 = "^1.25.8"' 'urllib3 = "*"' \
--replace 'websockets = "^10.0"' 'websockets = "*"'
'';
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
appdirs
certifi
importlib-metadata
pyee
tqdm
urllib3
websockets
];
nativeCheckInputs = [
syncer
pytest-xdist
pytestCheckHook
];
disabledTestPaths = [
# Requires network access
"tests/test_browser.py"
"tests/test_browser_context.py"
"tests/test_connection.py"
"tests/test_coverage.py"
"tests/test_dialog.py"
"tests/test_element_handle.py"
"tests/test_execution_context.py"
"tests/test_frame.py"
"tests/test_input.py"
"tests/test_launcher.py"
"tests/test_network.py"
"tests/test_page.py"
"tests/test_pyppeteer.py"
"tests/test_target.py"
"tests/test_tracing.py"
"tests/test_worker.py"
];
disabledTests = [
# Requires network access
"TestScreenShot"
"TestBrowserCrash"
"TestPDF"
];
pythonImportsCheck = [ "pyppeteer" ];
meta = {
description = "Headless chrome/chromium automation library (unofficial port of puppeteer)";
mainProgram = "pyppeteer-install";
homepage = "https://github.com/pyppeteer/pyppeteer";
changelog = "https://github.com/pyppeteer/pyppeteer/blob/${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kmein ];
};
}
|