blob: 5cb92f9c6615975cf9f43d98654db0536fc0f61e (
plain) (
blame)
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
38
39
40
41
42
43
|
{
lib,
buildPythonPackage,
fetchPypi,
linuxHeaders,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "evdev";
version = "1.7.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-DHLDcL2inYV+GI2TEBnDJlGpweqXfAjI2TmxztFjf94=";
};
patchPhase = ''
substituteInPlace setup.py \
--replace-fail /usr/include ${linuxHeaders}/include
'';
build-system = [ setuptools ];
buildInputs = [ linuxHeaders ];
doCheck = false;
pythonImportsCheck = [ "evdev" ];
meta = with lib; {
description = "Provides bindings to the generic input event interface in Linux";
homepage = "https://python-evdev.readthedocs.io/";
changelog = "https://github.com/gvalkov/python-evdev/blob/v${version}/docs/changelog.rst";
license = licenses.bsd3;
maintainers = [ ];
platforms = platforms.linux;
};
}
|