summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/appium-python-client/default.nix
blob: a8cbba46584e25b726f3e8600db292aef99cad51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  lib,
  fetchFromGitHub,
  buildPythonPackage,
  hatchling,
  selenium,
}:

buildPythonPackage (finalAttrs: {
  pname = "appium-python-client";
  version = "6.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "appium";
    repo = "python-client";
    tag = "v${finalAttrs.version}";
    hash = "sha256-ARpXFpBufMjboYXsru4I5PDWXNbqJJH3Pj8Oq1sVlMQ=";
  };

  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/";
    changelog = "https://github.com/appium/python-client/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ eyjhb ];
  };
})