mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
55 lines
1.1 KiB
Nix
55 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 = "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;
|
|
};
|
|
}
|