60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{ 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;
|
|
};
|
|
}
|