nixpkgs/pkgs/tools/misc/hid-tools/default.nix
2022-10-22 03:01:06 +02:00

42 lines
793 B
Nix

{ python3
, lib
, fetchFromGitLab
}:
python3.pkgs.buildPythonPackage rec {
pname = "hid-tools";
version = "0.3.1";
format = "setuptools";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "libevdev";
repo = "hid-tools";
rev = version;
sha256 = "r496SKBGgHriIhriWYhhCSiChQUKhnHT/lEx9sEoT/0=";
};
propagatedBuildInputs = with python3.pkgs; [
libevdev
parse
pyyaml
click
pyudev
];
checkInputs = with python3.pkgs; [
pytestCheckHook
];
# Tests require /dev/uhid
doCheck = false;
meta = with lib; {
description = "Python scripts to manipulate HID data";
homepage = "https://gitlab.freedesktop.org/libevdev/hid-tools";
license = licenses.mit;
maintainers = teams.freedesktop.members;
};
}