depot/third_party/nixpkgs/pkgs/development/python-modules/webdriver-manager/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

73 lines
1.6 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, packaging
, pybrowsers
, pytestCheckHook
, python-dotenv
, pythonOlder
, requests
, selenium
, setuptools
}:
buildPythonPackage rec {
pname = "webdriver-manager";
version = "4.0.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "SergeyPirogov";
repo = "webdriver_manager";
rev = "refs/tags/v${version}";
hash = "sha256-PdUlloJ4DncnktKQHofn/OLVrgSVyWhaeEEhl3Hgjek=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
packaging
python-dotenv
requests
];
nativeCheckInputs = [
pybrowsers
pytestCheckHook
selenium
];
pythonImportsCheck = [
"webdriver_manager"
];
disabledTestPaths = [
# Tests require network access and browsers available
"tests_negative/"
"tests_xdist/"
"tests/test_brave_driver.py"
"tests/test_chrome_driver.py"
"tests/test_chrome_driver.py"
"tests/test_chromium_driver.py"
"tests/test_custom_http_client.py"
"tests/test_downloader.py"
"tests/test_edge_driver.py"
"tests/test_firefox_manager.py"
"tests/test_ie_driver.py"
"tests/test_opera_manager.py"
"tests/test_opera_manager.py"
"tests/test_silent_global_logs.py"
];
meta = with lib; {
description = "Module to manage the binary drivers for different browsers";
homepage = "https://github.com/SergeyPirogov/webdriver_manager/";
changelog = "https://github.com/SergeyPirogov/webdriver_manager/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}