Skip to content

Commit

Permalink
python3Packages.nodriver: init at 0.34
Browse files Browse the repository at this point in the history
  • Loading branch information
liam-murphy14 committed Jul 20, 2024
1 parent 30a7fb2 commit d193304
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
53 changes: 53 additions & 0 deletions pkgs/development/python-modules/nodriver/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
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
];
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9077,6 +9077,8 @@ self: super: with self; {

node-semver = callPackage ../development/python-modules/node-semver { };

nodriver = callPackage ../development/python-modules/nodriver { };

noise = callPackage ../development/python-modules/noise { };

noiseprotocol = callPackage ../development/python-modules/noiseprotocol { };
Expand Down

0 comments on commit d193304

Please sign in to comment.