15 buildPythonPackage rec {
20 disabled = pythonOlder "3.7";
22 src = fetchFromGitHub {
25 rev = "refs/tags/v${version}";
26 hash = "sha256-QrD6z/g85FwaZCJ1PRn8CBKCOQcbVjQ9g0NpPIxguqk=";
29 nativeBuildInputs = [ setuptools ];
31 propagatedBuildInputs = [
43 pythonImportsCheck = [ "vncdotool" ];
46 description = "Command line VNC client and Python library";
47 homepage = "https://github.com/sibson/vncdotool";
48 changelog = "https://github.com/sibson/vncdotool/releases/tag/v${version}";
49 license = licenses.mit;
50 maintainers = with maintainers; [ elitak ];
51 mainProgram = "vncdo";
52 platforms = with platforms; linux ++ darwin;