nixpkgs/pkgs/development/python-modules/evdev/default.nix

30 lines
768 B
Nix
Raw Normal View History

2018-01-03 00:31:01 +00:00
{ lib, buildPythonPackage, isPy34, fetchPypi, linuxHeaders }:
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:31:01 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:29 +01:00
sha256 = "b03f5e1be5b4a5327494a981b831d251a142b09e8778eda1a8b53eba91100166";
};
buildInputs = [ linuxHeaders ];
2018-01-03 00:31:01 +00:00
patchPhase = ''
substituteInPlace setup.py --replace /usr/include/linux ${linuxHeaders}/include/linux
'';
doCheck = false;
2018-01-03 00:31:01 +00:00
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;
};
}