2021-11-09 23:11:24 +00:00
|
|
|
{ fetchFromGitHub, lib, python3 }:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "keymapviz";
|
2023-05-11 22:50:00 +00:00
|
|
|
version = "1.14.1";
|
2021-11-09 23:11:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "yskoht";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-05-11 22:50:00 +00:00
|
|
|
sha256 = "sha256-eCvwgco22uPEDDsT8FfTRon1xCGy5p1PBp0pDfNprMs=";
|
2021-11-09 23:11:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ regex ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A qmk keymap.c visualizer";
|
|
|
|
homepage = "https://github.com/yskoht/keymapviz";
|
|
|
|
license = licenses.mit;
|
2021-12-01 23:19:48 +00:00
|
|
|
maintainers = with maintainers; [ lom ];
|
2021-11-09 23:11:24 +00:00
|
|
|
};
|
|
|
|
}
|