depot/third_party/nixpkgs/pkgs/development/python-modules/nodriver/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

53 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
deprecated,
mss,
websockets,
setuptools,
}:
buildPythonPackage {
pname = "nodriver";
version = "0.34";
pyproject = true;
src = fetchFromGitHub {
owner = "ultrafunkamsterdam";
repo = "nodriver";
rev = "082815916900450485bd14cf1c7a83593e51825d";
hash = "sha256-MaOCC7yVLDqkpk8YiTov9WZKlYhME2CXHIrllmU0yLg=";
};
disabled = pythonOlder "3.9";
dependencies = [
deprecated
mss
websockets
];
build-system = [ setuptools ];
pythonImportsCheck = [ "nodriver" ];
# no tests in upstream
doCheck = false;
meta = {
homepage = "https://github.com/ultrafunkamsterdam/nodriver";
license = lib.licenses.agpl3Only;
description = "Web automation framework which can bypass bot detection";
longDescription = ''
Successor of Undetected-Chromedriver. Providing a blazing fast framework for web
automation, webscraping, bots and any other creative ideas which are normally
hindered by annoying anti bot systems like Captcha / CloudFlare / Imperva / hCaptcha
'';
maintainers = with lib.maintainers; [
liammurphy14
toasteruwu
];
};
}