summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/libevdev/default.nix
blob: e7be644cdd5aeb0206e2114cd3c0ebebd570753f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  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 ];
  };
}