blob: b9ef5c86e47f8881bf2ae849b2c37c0c7fb8363e (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
playwright,
poetry-core,
}:
buildPythonPackage rec {
pname = "playwright-stealth";
version = "2.0.0";
pyproject = true;
src = fetchPypi {
pname = "playwright_stealth";
inherit version;
hash = "sha256-T0TUFtQiZomJWk0c+0Do0TchbAyXEOqPhLri2/EYb8U=";
};
build-system = [ poetry-core ];
dependencies = [ playwright ];
pythonImportsCheck = [ "playwright_stealth" ];
meta = {
description = "Make your playwright instance stealthy";
homepage = "https://github.com/AtuboDad/playwright_stealth";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|