nixpkgs/pkgs/development/python-modules/evdev/default.nix
Ivan Trubach 90fbf71333 treewide: remove maintainer goibhniu
Inactive in Nixpkgs since 2018 (and a single PR in 2022).
https://github.com/NixOS/nixpkgs/issues?q=author%3Acillianderoiste
2024-07-24 13:38:22 +03:00

44 lines
921 B
Nix

{
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;
};
}