pythonPackages.robotframework-selenium2library: 1.6.0 -> 3.0.0
This commit is contained in:
parent
850b2592c3
commit
cf46e28f0a
@ -1,30 +1,24 @@
|
|||||||
{ stdenv
|
{ stdenv, buildPythonPackage, fetchPypi, robotframework-seleniumlibrary }:
|
||||||
, buildPythonPackage
|
|
||||||
, fetchPypi
|
|
||||||
, robotframework
|
|
||||||
, selenium
|
|
||||||
, docutils
|
|
||||||
, decorator
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "1.6.0";
|
version = "3.0.0";
|
||||||
pname = "robotframework-selenium2library";
|
pname = "robotframework-selenium2library";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1asdwrpb4s7q08bx641yrh3yicgba14n3hxmsqs58mqf86ignwly";
|
sha256 = "2a8e942b0788b16ded253039008b34d2b46199283461b294f0f41a579c70fda7";
|
||||||
};
|
};
|
||||||
|
|
||||||
# error: invalid command 'test'
|
# Neither the PyPI tarball nor the repository has tests
|
||||||
#doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = [ robotframework selenium docutils decorator ];
|
propagatedBuildInputs = [ robotframework-seleniumlibrary ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Web testing library for Robot Framework";
|
description = "Web testing library for Robot Framework";
|
||||||
homepage = http://robotframework.org/;
|
homepage = https://github.com/robotframework/Selenium2Library;
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.marsam ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user