1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 playwright,
6 poetry-core,
7}:
8
9buildPythonPackage rec {
10 pname = "playwright-stealth";
11 version = "2.0.0";
12 pyproject = true;
13
14 src = fetchPypi {
15 pname = "playwright_stealth";
16 inherit version;
17 hash = "sha256-T0TUFtQiZomJWk0c+0Do0TchbAyXEOqPhLri2/EYb8U=";
18 };
19
20 build-system = [ poetry-core ];
21
22 dependencies = [ playwright ];
23
24 pythonImportsCheck = [ "playwright_stealth" ];
25
26 meta = {
27 description = "Make your playwright instance stealthy";
28 homepage = "https://github.com/AtuboDad/playwright_stealth";
29 license = lib.licenses.mit;
30 maintainers = with lib.maintainers; [ fab ];
31 };
32}