generated from nix-community/nur-packages-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chromecontroller.nix
41 lines (35 loc) · 969 Bytes
/
chromecontroller.nix
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
35
36
37
38
39
40
41
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "chromecontroller";
version = "unstable-2023-08-28";
pyproject = true;
src = fetchFromGitHub {
owner = "fake-name";
repo = "ChromeController";
rev = "5c967531578e2f0830e3a78c5f038ff516990bca";
hash = "sha256-S5q5/EXO5pjx82pNcu3yGCe64fJilgqhVjyAvMjj9HY=";
fetchSubmodules = true;
};
nativeBuildInputs = [
python3.pkgs.setuptools
python3.pkgs.wheel
];
propagatedBuildInputs = with python3.pkgs; [
websocket-client
astor
requests
cachetools
docopt
];
pythonImportsCheck = [ "ChromeController" ];
meta = with lib; {
description = "Comprehensive wrapper and execution manager for the Chrome browser using the Chrome Debugging Protocol";
homepage = "https://github.com/fake-name/ChromeController";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
mainProgram = "chrome-controller";
};
}