1{ lib, buildPythonPackage, fetchPypi, robotframework-seleniumlibrary }:
2
3buildPythonPackage rec {
4 version = "3.0.0";
5 pname = "robotframework-selenium2library";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "2a8e942b0788b16ded253039008b34d2b46199283461b294f0f41a579c70fda7";
10 };
11
12 # Neither the PyPI tarball nor the repository has tests
13 doCheck = false;
14
15 propagatedBuildInputs = [ robotframework-seleniumlibrary ];
16
17 meta = with lib; {
18 description = "Web testing library for Robot Framework";
19 homepage = "https://github.com/robotframework/Selenium2Library";
20 license = licenses.asl20;
21 maintainers = [ maintainers.marsam ];
22 };
23
24}