pythonPackages.appium-python-client: init at 5.2.4 (#440097)
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildPythonPackage,
|
||||
hatchling,
|
||||
selenium,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "appium-python-client";
|
||||
version = "5.2.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "appium";
|
||||
repo = "python-client";
|
||||
tag = "v${version}";
|
||||
sha256 = "sha256-oZquEwA1iNIVftt9XBdDfCoI3DLh7eM5/ATcrjJL+jA=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
selenium
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "appium" ];
|
||||
|
||||
meta = {
|
||||
description = "Cross-platform automation framework for all kinds of apps, built on top of the W3C WebDriver protocol";
|
||||
homepage = "https://appium.io/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ eyjhb ];
|
||||
};
|
||||
}
|
||||
@@ -799,6 +799,8 @@ self: super: with self; {
|
||||
|
||||
appimage = callPackage ../development/python-modules/appimage { };
|
||||
|
||||
appium-python-client = callPackage ../development/python-modules/appium-python-client { };
|
||||
|
||||
apple-weatherkit = callPackage ../development/python-modules/apple-weatherkit { };
|
||||
|
||||
applicationinsights = callPackage ../development/python-modules/applicationinsights { };
|
||||
|
||||
Reference in New Issue
Block a user