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