python310Packages.selenium 0 -> 1 attrpath: python310Packages.selenium Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-selenium-4.14.0 Press Enter key to continue... Running update for: - python3.10-selenium-4.14.0: UPDATING ... - python3.10-selenium-4.14.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/selenium/default.nix b/pkgs/development/python-modules/selenium/default.nix index 086c53108976..0f0e2705578c 100644 --- a/pkgs/development/python-modules/selenium/default.nix +++ b/pkgs/development/python-modules/selenium/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "selenium"; - version = "4.14.0"; + version = "4.16.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -26,7 +26,7 @@ buildPythonPackage rec { repo = "selenium"; # check if there is a newer tag with or without -python suffix rev = "refs/tags/selenium-${version}"; - hash = "sha256-cTMCKfFLUlJDbTUQA3Z/pKCE1RQQRMb4K8hKKn9HqvU="; + hash = "sha256-5JHd/1fOQyaWWp7/GgTiIUcC84rhxzTKZcQdXg70ZqE="; }; preConfigure = '' No auto update branch exists Old version 4.14.0" not present in staging derivation file with contents: { lib , fetchFromGitHub , buildPythonPackage , certifi , geckodriver , pytestCheckHook , pythonOlder , trio , trio-websocket , urllib3 , pytest-trio , nixosTests , stdenv , python }: buildPythonPackage rec { pname = "selenium"; version = "4.15.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "SeleniumHQ"; repo = "selenium"; # check if there is a newer tag with or without -python suffix rev = "refs/tags/selenium-${version}"; hash = "sha256-AacpHZw6N6RruuBO+bZ3/cxOODe9VPGblKmIm1ffqrc="; }; preConfigure = '' cd py ''; postInstall = '' DST_PREFIX=$out/lib/${python.libPrefix}/site-packages/selenium/webdriver/ DST_REMOTE=$DST_PREFIX/remote/ DST_FF=$DST_PREFIX/firefox cp ../rb/lib/selenium/webdriver/atoms/getAttribute.js $DST_REMOTE cp ../rb/lib/selenium/webdriver/atoms/isDisplayed.js $DST_REMOTE cp ../rb/lib/selenium/webdriver/atoms/findElements.js $DST_REMOTE cp ../javascript/cdp-support/mutation-listener.js $DST_REMOTE cp ../third_party/js/selenium/webdriver.json $DST_FF/webdriver_prefs.json '' + lib.optionalString stdenv.isDarwin '' mkdir -p $DST_PREFIX/common/macos cp ../common/manager/macos/selenium-manager $DST_PREFIX/common/macos '' + lib.optionalString stdenv.isLinux '' mkdir -p $DST_PREFIX/common/linux/ cp ../common/manager/linux/selenium-manager $DST_PREFIX/common/linux/ ''; propagatedBuildInputs = [ certifi trio trio-websocket urllib3 ] ++ urllib3.optional-dependencies.socks; nativeCheckInputs = [ pytestCheckHook pytest-trio ]; passthru.tests = { testing-vaultwarden = nixosTests.vaultwarden; }; meta = with lib; { description = "Bindings for Selenium WebDriver"; homepage = "https://selenium.dev/"; license = licenses.asl20; maintainers = with maintainers; [ jraygauthier ]; }; }