nixpkgs/pkgs/development/python-modules/hid-parser/default.nix
2024-03-27 18:35:12 +01:00

37 lines
704 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pytest7CheckHook
, hypothesis
}:
buildPythonPackage rec {
pname = "hid-parser";
version = "0.0.3";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-zbm+h+ieDmd1K0uH+9B8EWtYScxqYJXVpY9bXdBivA4=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytest7CheckHook
hypothesis
];
pythonImportsCheck = [ "hid_parser" ];
meta = with lib; {
description = "Typed pure Python library to parse HID report descriptors";
homepage = "https://github.com/usb-tools/python-hid-parser";
license = licenses.mit;
maintainers = with maintainers; [ kranzes ];
};
}