mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
28 lines
686 B
Nix
28 lines
686 B
Nix
{ lib, buildPythonPackage, fetchPypi, linuxHeaders }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "evdev";
|
|
version = "1.5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-WzOxdPfIRXbn3WBx5Di/WtIn2pXv1DVqOf5Mg1VBL+Y=";
|
|
};
|
|
|
|
buildInputs = [ linuxHeaders ];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace setup.py --replace /usr/include/linux ${linuxHeaders}/include/linux
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Provides bindings to the generic input event interface in Linux";
|
|
homepage = "https://pythonhosted.org/evdev";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|