From bccd6352d3abc4ca6bfb87c00cc695e92a146181 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 17 Oct 2022 23:22:07 +0200 Subject: [PATCH] python310Packages.selenium: 4.4.2 -> 4.5.0, add SuperSandro2000 as maintainer --- pkgs/development/python-modules/selenium/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/selenium/default.nix b/pkgs/development/python-modules/selenium/default.nix index 4c7eedf281d3..2656f460ff6a 100644 --- a/pkgs/development/python-modules/selenium/default.nix +++ b/pkgs/development/python-modules/selenium/default.nix @@ -12,14 +12,15 @@ buildPythonPackage rec { pname = "selenium"; - version = "4.4.2"; + version = "4.5.0"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "SeleniumHQ"; repo = "selenium"; - rev = "refs/tags/selenium-${version}-python"; # check if there is a newer tag with -python suffix - hash = "sha256-sJJ3i4mnGp5fDgo64p6B2vRCqp/Wm99VoyRLyy4nBH8="; + # check if there is a newer tag with or without -python suffix + rev = "refs/tags/selenium-${version}"; + hash = "sha256-K90CQYTeX9GKpP0ahxLx2HO5HG0P6MN7jeWmHtfiOns="; }; postPatch = '' @@ -50,6 +51,6 @@ buildPythonPackage rec { description = "Bindings for Selenium WebDriver"; homepage = "https://selenium.dev/"; license = licenses.asl20; - maintainers = with maintainers; [ jraygauthier ]; + maintainers = with maintainers; [ jraygauthier SuperSandro2000 ]; }; }