Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / robotframework-selenium2library / default.nix
blob6d079a99b4f1d4629e55731295e1579f59d53a17
1 { lib, buildPythonPackage, fetchPypi, robotframework-seleniumlibrary }:
3 buildPythonPackage rec {
4   version = "3.0.0";
5   pname = "robotframework-selenium2library";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "2a8e942b0788b16ded253039008b34d2b46199283461b294f0f41a579c70fda7";
10   };
12   # Neither the PyPI tarball nor the repository has tests
13   doCheck = false;
15   propagatedBuildInputs = [ robotframework-seleniumlibrary ];
17   meta = with lib; {
18     description = "Web testing library for Robot Framework";
19     homepage = "https://github.com/robotframework/Selenium2Library";
20     license = licenses.asl20;
21     maintainers = [ maintainers.marsam ];
22   };