nixpkgs/pkgs/tools/misc/hid-tools/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

42 lines
799 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
];
nativeCheckInputs = 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;
};
}