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

28 lines
699 B
Nix
Raw Normal View History

2020-05-04 19:32:01 +01:00
{ lib, buildPythonPackage, fetchPypi, linuxHeaders }:
buildPythonPackage rec {
2018-01-03 00:31:01 +00:00
pname = "evdev";
2021-01-18 03:54:02 +00:00
version = "1.4.0";
2018-01-03 00:31:01 +00:00
src = fetchPypi {
inherit pname version;
2021-01-18 03:54:02 +00:00
sha256 = "8782740eb1a86b187334c07feb5127d3faa0b236e113206dfe3ae8f77fb1aaf1";
};
buildInputs = [ linuxHeaders ];
2018-01-03 00:31:01 +00:00
patchPhase = ''
substituteInPlace setup.py --replace /usr/include/linux ${linuxHeaders}/include/linux
'';
doCheck = false;
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;
};
}