nixpkgs/pkgs/tools/inputmethods/evdevremapkeys/default.nix

34 lines
775 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2019-10-08 13:58:46 +00:00
python3Packages.buildPythonPackage rec {
2019-10-08 13:58:46 +00:00
pname = "evdevremapkeys";
version = "0.1.0";
2019-10-08 13:58:46 +00:00
src = fetchFromGitHub {
owner = "philipl";
repo = pname;
rev = "68fb618b8142e1b45d7a1e19ea9a5a9bbb206144";
sha256 = "0c9slflakm5jqd8s1zpxm7gmrrk0335m040d7m70hnsak42jvs2f";
};
propagatedBuildInputs = with python3Packages; [
2019-10-08 13:58:46 +00:00
pyyaml
pyxdg
python-daemon
evdev
];
# hase no tests
doCheck = false;
pythonImportsCheck = [ "evdevremapkeys" ];
meta = with lib; {
2019-10-08 13:58:46 +00:00
homepage = "https://github.com/philipl/evdevremapkeys";
description = "Daemon to remap events on linux input devices";
license = licenses.mit;
maintainers = [ maintainers.q3k ];
platforms = platforms.linux;
};
}