nixpkgs/pkgs/development/python-modules/libevdev/default.nix

36 lines
707 B
Nix
Raw Normal View History

{ lib
2020-07-08 13:19:32 +00:00
, buildPythonPackage
, isPy27
, fetchPypi
, substituteAll
, pkgs
2020-07-08 13:22:42 +00:00
, pytestCheckHook
2020-07-08 13:19:32 +00:00
}:
2020-04-23 23:20:06 +00:00
buildPythonPackage rec {
pname = "libevdev";
2020-07-06 15:17:19 +00:00
version = "0.9";
2020-04-23 23:20:06 +00:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-07-06 15:17:19 +00:00
sha256 = "17agnigmzscmdjqmrylg1lza03hwjhgxbpf4l705s6i7p7ndaqrs";
2020-04-23 23:20:06 +00:00
};
2020-07-08 13:19:32 +00:00
patches = [
(substituteAll {
src = ./fix-paths.patch;
libevdev = lib.getLib pkgs.libevdev;
2020-07-08 13:19:32 +00:00
})
];
2020-07-08 13:22:42 +00:00
checkInputs = [ pytestCheckHook ];
2020-04-23 23:20:06 +00:00
meta = with lib; {
2020-04-23 23:20:06 +00:00
description = "Python wrapper around the libevdev C library";
homepage = "https://gitlab.freedesktop.org/libevdev/python-libevdev";
license = licenses.mit;
maintainers = with maintainers; [ nickhu ];
};
}