depot/third_party/nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
681 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, robotframework-seleniumlibrary }:
buildPythonPackage rec {
version = "3.0.0";
pname = "robotframework-selenium2library";
src = fetchPypi {
inherit pname version;
sha256 = "2a8e942b0788b16ded253039008b34d2b46199283461b294f0f41a579c70fda7";
};
# Neither the PyPI tarball nor the repository has tests
doCheck = false;
propagatedBuildInputs = [ robotframework-seleniumlibrary ];
meta = with stdenv.lib; {
description = "Web testing library for Robot Framework";
homepage = "https://github.com/robotframework/Selenium2Library";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}