Unverified Commit 4690f02f authored by Matt Sturgeon's avatar Matt Sturgeon
Browse files

keymap-drawer: 0.22.0 -> 0.22.1

https://github.com/caksoylar/keymap-drawer/releases/tag/v0.22.1

Relax the tree-sitter-devicetree dependency that is pinned to 0.14.0
upstream, but is packaged as 0.25.6 in nixpkgs.

IIUC, nixpkgs maintains its own tree-sitter python bindings, so package
versions do not match up with the PyPi equivalent.
parent e1d0da37
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
  versionCheckHook,
}:
let
  version = "0.22.0";
  version = "0.22.1";
in
buildPythonPackage {
  inherit version;
@@ -30,11 +30,15 @@ buildPythonPackage {
    owner = "caksoylar";
    repo = "keymap-drawer";
    tag = "v${version}";
    hash = "sha256-SPnIfrUA0M9xznjEe60T+0VHh9lCmY4cni9hyqFlZqM=";
    hash = "sha256-X3O5yspEdey03YQ6JsYN/DE9NUiq148u1W6LQpUQ3ns=";
  };

  build-system = [ poetry-core ];

  pythonRelaxDeps = [
    "tree-sitter-devicetree"
  ];

  dependencies = [
    pcpp
    platformdirs