pythonPackages.robotframework-seleniumlibrary: init at 3.2.0
This commit is contained in:
parent
0890aa4d6a
commit
850b2592c3
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, buildPythonPackage, fetchFromGitHub, python, robotframework, selenium, mockito, robotstatuschecker, approvaltests }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "3.2.0";
|
||||
pname = "robotframework-seleniumlibrary";
|
||||
|
||||
# no tests included in PyPI tarball
|
||||
src = fetchFromGitHub {
|
||||
owner = "robotframework";
|
||||
repo = "SeleniumLibrary";
|
||||
rev = "v${version}";
|
||||
sha256 = "106dl0qgf52wqk1xn4ghj7n2fjhaq0fh2wlnqn29aczbv5q581y3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ robotframework selenium ];
|
||||
checkInputs = [ mockito robotstatuschecker approvaltests ];
|
||||
|
||||
# Only execute Unit Tests. Acceptance Tests require headlesschrome, currently
|
||||
# not available in nixpkgs
|
||||
checkPhase = ''
|
||||
${python.interpreter} utest/run.py
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Web testing library for Robot Framework";
|
||||
homepage = https://github.com/robotframework/SeleniumLibrary;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
};
|
||||
}
|
|
@ -3810,6 +3810,8 @@ in {
|
|||
|
||||
robotframework-ride = callPackage ../development/python-modules/robotframework-ride { };
|
||||
|
||||
robotframework-seleniumlibrary = callPackage ../development/python-modules/robotframework-seleniumlibrary { };
|
||||
|
||||
robotframework-selenium2library = callPackage ../development/python-modules/robotframework-selenium2library { };
|
||||
|
||||
robotframework-tools = callPackage ../development/python-modules/robotframework-tools { };
|
||||
|
|
Loading…
Reference in New Issue