mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
30 lines
770 B
Nix
30 lines
770 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;
|
|
};
|
|
}
|