2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-26 14:49:50 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildPythonPackage {
|
2018-11-04 23:32:52 +00:00
|
|
|
pname = "pyinputevent";
|
2018-10-26 14:49:50 +01:00
|
|
|
version = "2016-10-18";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ntzrmtthihu777";
|
|
|
|
repo = "pyinputevent";
|
|
|
|
rev = "d2075fa5db5d8a402735fe788bb33cf9fe272a5b";
|
|
|
|
sha256 = "0rkis0xp8f9jc00x7jb9kbvhdla24z1vl30djqa6wy6fx0cr6sib";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-26 14:49:50 +01:00
|
|
|
homepage = "https://github.com/ntzrmtthihu777/pyinputevent";
|
|
|
|
description = "Python interface to the Input Subsystem's input_event and uinput";
|
|
|
|
license = licenses.bsd3;
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2018-10-26 14:49:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|