8 buildPythonPackage rec {
9 pname = "python-uinput";
11 format = "setuptools";
14 inherit pname version;
15 hash = "sha256-hTaXNEtk31U31K4yum+88FFdUakBCRD11QGZWQOLbro=";
18 buildInputs = [ udev ];
20 NIX_CFLAGS_LINK = "-ludev";
22 doCheck = false; # no tests
25 description = "Pythonic API to Linux uinput kernel module";
26 homepage = "https://tjjr.fi/sw/python-uinput/";
27 license = licenses.gpl3Plus;
28 maintainers = with maintainers; [ abbradar ];