Commit 8f73ee0f authored by Jan Tojnar's avatar Jan Tojnar
Browse files

hid-tools: init at 0.3.1

parent db25c4da
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{ python3
, lib
, fetchFromGitLab
}:

python3.pkgs.buildPythonPackage rec {
  pname = "hid-tools";
  version = "0.3.1";

  format = "setuptools";

  src = fetchFromGitLab {
    domain = "gitlab.freedesktop.org";
    owner = "libevdev";
    repo = "hid-tools";
    rev = version;
    sha256 = "r496SKBGgHriIhriWYhhCSiChQUKhnHT/lEx9sEoT/0=";
  };

  propagatedBuildInputs = with python3.pkgs; [
    libevdev
    parse
    pyyaml
    click
    pyudev
  ];

  checkInputs = with python3.pkgs; [
    pytestCheckHook
  ];

  # Tests require /dev/uhid
  doCheck = false;

  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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4202,6 +4202,8 @@ with pkgs;
  hid-listen = callPackage ../tools/misc/hid-listen { };
  hid-tools = callPackage ../tools/misc/hid-tools { };
  hidrd = callPackage ../tools/misc/hidrd { };
  hiksink = callPackage ../tools/misc/hiksink {