Unverified Commit 38cf92f7 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents 65272179 e1fd483f
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };