nix-packages/plover/plover-machine-hid.nix

23 lines
775 B
Nix
Raw Normal View History

2022-09-30 13:45:08 +00:00
{callPackage, buildPythonPackage, fetchFromGitHub, lib, pythonOlder, hid, bitstring}:
2022-09-30 13:36:15 +00:00
let plover = callPackage ./plover {};
source = builtins.fromJSON (builtins.readFile ./plover-machine-hid.json);
in buildPythonPackage rec {
pname = "plover_machine_hid";
version = source.date;
src = fetchFromGitHub {
owner = "dnaq";
repo = "plover-machine-hid";
inherit (source) rev sha256;
};
doCheck = false;
disabled = pythonOlder "3.6";
2022-09-30 13:45:08 +00:00
propagatedBuildInputs = [plover hid bitstring];
2022-09-30 13:36:15 +00:00
meta = with lib; {
description = "POC Plover plugin and firmware for the Plover HID protocol";
license = licenses.mit;
};
passthru.updateScript = [../scripts/update-git.sh "https://github.com/dnaq/plover-machine-hid" "plover/plover-machine-hid.json"];
}