nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

29 lines
679 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
robotframework-seleniumlibrary,
}:
buildPythonPackage rec {
version = "3.0.0";
format = "setuptools";
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 = {
description = "Web testing library for Robot Framework";
homepage = "https://github.com/robotframework/Selenium2Library";
license = lib.licenses.asl20;
maintainers = [ ];
};
}