blob: 3fa11c3a76463b5d9ea039672474e099b8d226bd (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "keyboard";
version = "0.13.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "boppreh";
repo = "keyboard";
rev = "v${version}";
hash = "sha256-U4GWhPp28azBE3Jn9xpLxudOKx0PjnYO77EM2HsJ9lM=";
};
pythonImportsCheck = [ "keyboard" ];
# Specific OS tests are being run for other OS, like
# winmouse on Linux, which provides the following error:
# AttributeError: module 'ctypes' has no attribute 'WinDLL'
doCheck = false;
meta = {
description = "Hook and simulate keyboard events on Windows and Linux";
homepage = "https://github.com/boppreh/keyboard";
license = lib.licenses.mit;
maintainers = [ ];
platforms = lib.platforms.linux;
};
}
|