blob: ea5083233c88d6df83b8a53af6add7d754187e39 (
plain)
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
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
playwright,
playwright-driver,
pytest,
pytest-base-url,
python-slugify,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-playwright";
version = "0.7.2";
pyproject = true;
src = fetchFromGitHub {
owner = "microsoft";
repo = "playwright-pytest";
tag = "v${version}";
hash = "sha256-FAG+lpo4cdfHSqQ1k0U2U0agTpUkEUIV+4veFijwR9A=";
};
postPatch = ''
pushd pytest-playwright
substituteInPlace pyproject.toml --replace-fail "==" ">="
'';
build-system = [
setuptools
setuptools-scm
];
buildInputs = [ pytest ];
dependencies = [
playwright
pytest-base-url
python-slugify
];
# Most of the tests rely on network access, or on unavailable browsers such as
# msedge, chrome or webkit
doCheck = false;
preCheck = ''
popd
export PLAYWRIGHT_BROWSERS_PATH=${playwright-driver.browsers}
'';
pythonImportsCheck = [ "pytest_playwright" ];
meta = {
description = "Pytest plugin to write end-to-end browser tests with Playwright";
homepage = "https://github.com/microsoft/playwright-pytest";
changelog = "https://github.com/microsoft/playwright-pytest/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sephi ];
};
}
|