mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
44 lines
917 B
Nix
44 lines
917 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, linuxHeaders
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "evdev";
|
|
version = "1.6.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-KZ24YozHOyN/wcxX08KUj6oHVuKli2GUtb+B3CCB8eM=";
|
|
};
|
|
|
|
buildInputs = [
|
|
linuxHeaders
|
|
];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace setup.py \
|
|
--replace /usr/include/linux ${linuxHeaders}/include/linux
|
|
'';
|
|
|
|
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 = with maintainers; [ goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|