Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
python3,
|
|
lib,
|
|
fetchFromGitLab,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "hid-tools";
|
|
version = "0.7";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "libevdev";
|
|
repo = "hid-tools";
|
|
rev = version;
|
|
hash = "sha256-h880jJcZDc9pIPf+nr30wu2i9y3saAKFZpooJ4MF67E=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
hatchling
|
|
pypandoc
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
libevdev
|
|
parse
|
|
pyyaml
|
|
click
|
|
pyudev
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Tests require /dev/uhid
|
|
# https://gitlab.freedesktop.org/libevdev/hid-tools/-/issues/18#note_166353
|
|
doCheck = false;
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "pypandoc_binary" "pypandoc"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python scripts to manipulate HID data";
|
|
homepage = "https://gitlab.freedesktop.org/libevdev/hid-tools";
|
|
license = licenses.mit;
|
|
teams = [ teams.freedesktop ];
|
|
};
|
|
}
|