571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
54 lines
1.1 KiB
Nix
54 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;
|
|
maintainers = teams.freedesktop.members;
|
|
};
|
|
}
|