2018-12-08 14:25:29 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, robotframework-seleniumlibrary }:
|
2018-10-26 17:21:24 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-12-08 14:25:29 +00:00
|
|
|
version = "3.0.0";
|
2018-10-26 17:21:24 +01:00
|
|
|
pname = "robotframework-selenium2library";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-08 14:25:29 +00:00
|
|
|
sha256 = "2a8e942b0788b16ded253039008b34d2b46199283461b294f0f41a579c70fda7";
|
2018-10-26 17:21:24 +01:00
|
|
|
};
|
|
|
|
|
2018-12-08 14:25:29 +00:00
|
|
|
# Neither the PyPI tarball nor the repository has tests
|
|
|
|
doCheck = false;
|
2018-10-26 17:21:24 +01:00
|
|
|
|
2018-12-08 14:25:29 +00:00
|
|
|
propagatedBuildInputs = [ robotframework-seleniumlibrary ];
|
2018-10-26 17:21:24 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Web testing library for Robot Framework";
|
2018-12-08 14:25:29 +00:00
|
|
|
homepage = https://github.com/robotframework/Selenium2Library;
|
2018-10-26 17:21:24 +01:00
|
|
|
license = licenses.asl20;
|
2018-12-08 14:25:29 +00:00
|
|
|
maintainers = [ maintainers.marsam ];
|
2018-10-26 17:21:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|