3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/evdev/default.nix

30 lines
767 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";
2018-04-04 19:08:11 +01:00
version = "0.8.1";
2018-01-03 00:31:01 +00:00
src = fetchPypi {
inherit pname version;
2018-04-04 19:08:11 +01:00
sha256 = "3f10c22f15ffedb34519e4af2201f1a088a958efedfd50da0da1aa3887283dff";
};
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 = http://pythonhosted.org/evdev;
license = licenses.bsd3;
maintainers = with maintainers; [ goibhniu ];
platforms = platforms.linux;
};
}