7 buildPythonPackage rec {
8 pname = "python-uinput";
10 format = "setuptools";
13 inherit pname version;
14 sha256 = "sha256-hTaXNEtk31U31K4yum+88FFdUakBCRD11QGZWQOLbro=";
17 buildInputs = [ udev ];
19 NIX_CFLAGS_LINK = "-ludev";
21 doCheck = false; # no tests
24 description = "Pythonic API to Linux uinput kernel module";
25 homepage = "https://tjjr.fi/sw/python-uinput/";
26 license = licenses.gpl3Plus;
27 maintainers = with maintainers; [ abbradar ];