diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-24 23:23:18 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:12 +0100 |
commit | 8a7c366627cfc6c7462df530d9338f04e5ddcac1 (patch) | |
tree | e0ca3091ca28e1cb7c294e0e68b4cb7852777c80 /gnu/packages/python-xyz.scm | |
parent | 752125117bf7bcb150e6510076a9ee5d3e21cea5 (diff) |
gnu: Add python-vncdotool.
* gnu/packages/python-xyz.scm (python-vncdotool): New variable.
Change-Id: Ifbe9ef6fd30c6f8e86f883f4864fdccce51a9f4a
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 977dbd9e2e..4135860f55 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21531,6 +21531,31 @@ that, when set on the root @code{Logger}, will tunnel log records to the main process so that they are handled correctly.") (license license:lgpl3+))) +(define-public python-vncdotool + (package + (name "python-vncdotool") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "http://github.com/sibson/vncdotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1adsc263qsa3hcyk8mhv0wwq44h8zhcksx92chd5rr1wz37zmc22")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-pillow python-pycryptodomex python-twisted)) + (native-inputs (list python-pexpect python-pytest python-pyvirtualdisplay + python-setuptools python-wheel)) + (home-page "http://github.com/sibson/vncdotool") + (synopsis "Command line VNC client") + (description + "This package provides a Python command line VNC client. It can be +useful to automating interactions with virtual machines or hardware devices +that are otherwise difficult to control.") + (license license:expat))) + (define-public python-vobject (package (name "python-vobject") |