Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / hid-parser / default.nix
blob56aeb503b49c71f5fe592c546bca93e2645c415e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , pytestCheckHook
6 , hypothesis
7 }:
9 buildPythonPackage rec {
10   pname = "hid-parser";
11   version = "0.0.3";
12   format = "pyproject";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-zbm+h+ieDmd1K0uH+9B8EWtYScxqYJXVpY9bXdBivA4=";
17   };
19   nativeBuildInputs = [
20     setuptools
21   ];
23   nativeCheckInputs = [
24     pytestCheckHook
25     hypothesis
26   ];
28   pythonImportsCheck = [ "hid_parser" ];
30   meta = with lib; {
31     description = "Typed pure Python library to parse HID report descriptors";
32     homepage = "https://github.com/usb-tools/python-hid-parser";
33     license = licenses.mit;
34     maintainers = with maintainers; [ kranzes ];
35   };