My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-uinput/default.nix

23 lines
530 B

{ lib, buildPythonPackage, fetchPypi
, udev }:
buildPythonPackage rec {
pname = "python-uinput";
version = "0.11.2";
src = fetchPypi {
inherit pname version;
sha256 = "033zqiypjz0nigav6vz0s57pbzikvds55mxphrdpkdbpdikjnfcr";
};
buildInputs = [ udev ];
NIX_CFLAGS_LINK = "-ludev";
meta = with lib; {
description = "Pythonic API to Linux uinput kernel module";
homepage = "https://tjjr.fi/sw/python-uinput/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ abbradar ];
};
}