2018-01-03 00:31:01 +00:00
|
|
|
{ lib, buildPythonPackage, isPy34, fetchPypi, linuxHeaders }:
|
2018-01-03 00:27:51 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-01-03 00:31:01 +00:00
|
|
|
pname = "evdev";
|
2019-10-24 07:47:29 +01:00
|
|
|
version = "1.2.0";
|
2018-01-03 00:27:51 +00:00
|
|
|
|
2018-01-03 00:31:01 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:29 +01:00
|
|
|
sha256 = "b03f5e1be5b4a5327494a981b831d251a142b09e8778eda1a8b53eba91100166";
|
2018-01-03 00:27:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ linuxHeaders ];
|
|
|
|
|
2018-01-03 00:31:01 +00:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace setup.py --replace /usr/include/linux ${linuxHeaders}/include/linux
|
|
|
|
'';
|
2018-01-03 00:27:51 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-01-03 00:31:01 +00:00
|
|
|
disabled = isPy34; # see http://bugs.python.org/issue21121
|
|
|
|
|
2018-01-03 00:27:51 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Provides bindings to the generic input event interface in Linux";
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = https://pythonhosted.org/evdev;
|
2018-01-03 00:27:51 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|