depot/third_party/nixpkgs/pkgs/development/python-modules/libevdev/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

35 lines
707 B
Nix

{ lib
, buildPythonPackage
, isPy27
, fetchPypi
, substituteAll
, pkgs
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "libevdev";
version = "0.10";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-9LM2Ftr6qmQYysCxso+XJSthwJdOU01J+yL8ZWbtwRM=";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
libevdev = lib.getLib pkgs.libevdev;
})
];
checkInputs = [ 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 ];
};
}