python312Packages.webdriver-manager: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-22 11:40:31 +02:00
parent 37f301664c
commit 5be9282033

View File

@ -1,14 +1,15 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, packaging fetchFromGitHub,
, pybrowsers packaging,
, pytestCheckHook pybrowsers,
, python-dotenv pytestCheckHook,
, pythonOlder python-dotenv,
, requests pythonOlder,
, selenium requests,
, setuptools selenium,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -25,9 +26,7 @@ buildPythonPackage rec {
hash = "sha256-PdUlloJ4DncnktKQHofn/OLVrgSVyWhaeEEhl3Hgjek="; hash = "sha256-PdUlloJ4DncnktKQHofn/OLVrgSVyWhaeEEhl3Hgjek=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
packaging packaging
@ -41,9 +40,7 @@ buildPythonPackage rec {
selenium selenium
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "webdriver_manager" ];
"webdriver_manager"
];
disabledTestPaths = [ disabledTestPaths = [
# Tests require network access and browsers available # Tests require network access and browsers available