pythonPackages.appium-python-client: init at 5.2.4 (#440097)

This commit is contained in:
Sandro
2025-09-23 21:05:21 +00:00
committed by GitHub
2 changed files with 37 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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 { };