1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage {
7 pname = "pyinputevent";
8 version = "2016-10-18";
9
10 src = fetchFromGitHub {
11 owner = "ntzrmtthihu777";
12 repo = "pyinputevent";
13 rev = "d2075fa5db5d8a402735fe788bb33cf9fe272a5b";
14 sha256 = "0rkis0xp8f9jc00x7jb9kbvhdla24z1vl30djqa6wy6fx0cr6sib";
15 };
16
17 meta = with lib; {
18 homepage = "https://github.com/ntzrmtthihu777/pyinputevent";
19 description = "Python interface to the Input Subsystem's input_event and uinput";
20 license = licenses.bsd3;
21 platforms = platforms.unix;
22 };
23
24}