1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 07:59:24 +03:00
nixpkgs/pkgs/development/python-modules/libevdev/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
707 B
Nix
Raw Normal View History

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