ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / evdev / default.nix
blob354b10749938b111221fe9cb3d8adaef4003be93
1 { lib, buildPythonPackage, fetchPypi, linuxHeaders }:
3 buildPythonPackage rec {
4   pname = "evdev";
5   version = "1.6.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-7PoBtchPfoxs7TNnrJUoj0PNhO+/1919DNv8DRjIemo=";
10   };
12   buildInputs = [ linuxHeaders ];
14   patchPhase = ''
15     substituteInPlace setup.py --replace /usr/include/linux ${linuxHeaders}/include/linux
16   '';
18   doCheck = false;
20   meta = with lib; {
21     description = "Provides bindings to the generic input event interface in Linux";
22     homepage = "https://pythonhosted.org/evdev";
23     license = licenses.bsd3;
24     maintainers = with maintainers; [ goibhniu ];
25     platforms = platforms.linux;
26   };