aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/evdev
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/evdev')
-rw-r--r--nixpkgs/pkgs/development/python-modules/evdev/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/evdev/default.nix b/nixpkgs/pkgs/development/python-modules/evdev/default.nix
new file mode 100644
index 00000000000..1711131be2d
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/evdev/default.nix
@@ -0,0 +1,29 @@
+{ 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;
+ };
+}