about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/hid-parser/default.nix
blob: 56aeb503b49c71f5fe592c546bca93e2645c415e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pytestCheckHook
, 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 = [
    pytestCheckHook
    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 ];
  };
}