blob: 2fbee9f2d65a665c84a0ac36cf00b41016b6f091 (
plain) (
blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, pexpect
, pillow
, pycryptodomex
, pytestCheckHook
, pythonOlder
, pyvirtualdisplay
, setuptools
, twisted
}:
buildPythonPackage rec {
pname = "vncdo";
version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "sibson";
repo = "vncdotool";
rev = "refs/tags/v${version}";
hash = "sha256-QrD6z/g85FwaZCJ1PRn8CBKCOQcbVjQ9g0NpPIxguqk=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pillow
pycryptodomex
twisted
];
nativeCheckInputs = [
pexpect
pytestCheckHook
pyvirtualdisplay
];
pythonImportsCheck = [
"vncdotool"
];
meta = with lib; {
description = "A command line VNC client and Python library";
homepage = "https://github.com/sibson/vncdotool";
changelog = "https://github.com/sibson/vncdotool/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ elitak ];
mainProgram = "vncdo";
platforms = with platforms; linux ++ darwin;
};
}
|