depot/third_party/nixpkgs/pkgs/development/python-modules/libevdev/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
745 B
Nix

{
lib,
buildPythonPackage,
isPy27,
fetchPypi,
substituteAll,
pkgs,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "libevdev";
version = "0.11";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-6coAak3ySIpgvZp0ABHulI2BkEviNk8BflYBaVCPVg8=";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
libevdev = lib.getLib pkgs.libevdev;
})
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Python wrapper around the libevdev C library";
homepage = "https://gitlab.freedesktop.org/libevdev/python-libevdev";
license = licenses.mit;
maintainers = with maintainers; [ nickhu ];
};
}