Commit 0dc4e4ce authored by Robert Schütz's avatar Robert Schütz
Browse files
parent 0cbbd28a
Loading
Loading
Loading
Loading
+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 ];
  };
}