python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / python-uinput / default.nix
blob01f1f2483282e63b1de7fc89c22cb659eafe06df
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   udev,
6 }:
8 buildPythonPackage rec {
9   pname = "python-uinput";
10   version = "1.0.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-hTaXNEtk31U31K4yum+88FFdUakBCRD11QGZWQOLbro=";
16   };
18   buildInputs = [ udev ];
20   NIX_CFLAGS_LINK = "-ludev";
22   doCheck = false; # no tests
24   meta = with lib; {
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 ];
29   };