Unverified Commit 9445eba2 authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

Merge pull request #325505 from dotlambda/python3Packages.approvaltests

python311Packages.robotframework-seleniumlibrary: 6.4.0 -> 6.5.0 
parents 113763dc 0dc4e4ce
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@

buildPythonPackage rec {
  pname = "approvaltests";
  version = "12.2.1";
  version = "14.0.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
    owner = "approvals";
    repo = "ApprovalTests.Python";
    rev = "refs/tags/v${version}";
    hash = "sha256-Hd0cEAL5RGmAhob1oZwOVC+eXOxc9OTeUnrTTNCpL2E=";
    hash = "sha256-BTTmmtmFjYBfzbVf/Fi8PwnpVJBcOOBTdFBmGowGez4=";
  };

  build-system = [ setuptools ];
+2 −10
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,
  fetchpatch2,
  setuptools,
  robotframework,
  approvaltests,
@@ -14,7 +13,7 @@

buildPythonPackage rec {
  pname = "robotframework-pythonlibcore";
  version = "4.4.0";
  version = "4.4.1";

  disabled = pythonOlder "3.8";

@@ -24,16 +23,9 @@ buildPythonPackage rec {
    owner = "robotframework";
    repo = "PythonLibCore";
    rev = "refs/tags/v${version}";
    hash = "sha256-282A4EW88z6ODSIEIIeBbN8YO491rwI4M7njI7kL3XQ=";
    hash = "sha256-5RUi65+DljCqWoB8vZxc0hyIefEFOWuKluplXrD0SkI=";
  };

  patches = [
    (fetchpatch2 {
      url = "https://github.com/robotframework/PythonLibCore/commit/8b756a4bd119d660109437023789bfada21bdc78.patch";
      hash = "sha256-4NtgkGbIj9gH9Det6VNh1MpGSGroESxQ8X2ZTeoX/zU=";
    })
  ];

  build-system = [ setuptools ];

  dependencies = [ robotframework ];
+9 −7
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  click,
  robotframework,
  robotframework-pythonlibcore,
  selenium,
@@ -14,7 +15,7 @@

buildPythonPackage rec {
  pname = "robotframework-seleniumlibrary";
  version = "6.4.0";
  version = "6.5.0";
  pyproject = true;

  # no tests included in PyPI tarball
@@ -22,12 +23,13 @@ buildPythonPackage rec {
    owner = "robotframework";
    repo = "SeleniumLibrary";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-Rjbdn1WXdXLn//HLtHwVrlLD+3vw9mgre/0wvMb+xbc=";
    sha256 = "sha256-sB2lWFFpCGgF0XFes84fBBvR8GF+S8aWWJoih+xBmW8=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    click
    robotframework
    robotframework-pythonlibcore
    selenium
@@ -44,11 +46,11 @@ buildPythonPackage rec {
    mkdir utest/output_dir
  '';

  meta = with lib; {
  meta = {
    changelog = "https://github.com/robotframework/SeleniumLibrary/blob/${src.rev}/docs/SeleniumLibrary-${version}.rst";
    description = "Web testing library for Robot Framework";
    homepage = "https://github.com/robotframework/SeleniumLibrary";
    license = licenses.asl20;
    maintainers = [ ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}