nixpkgs/pkgs/development/python-modules/evdev/default.nix
2019-10-27 16:26:41 +01:00

30 lines
768 B
Nix

{ lib, buildPythonPackage, isPy34, fetchPypi, linuxHeaders }:
buildPythonPackage rec {
pname = "evdev";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "b03f5e1be5b4a5327494a981b831d251a142b09e8778eda1a8b53eba91100166";
};
buildInputs = [ linuxHeaders ];
patchPhase = ''
substituteInPlace setup.py --replace /usr/include/linux ${linuxHeaders}/include/linux
'';
doCheck = false;
disabled = isPy34; # see http://bugs.python.org/issue21121
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;
};
}