7 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
15 sha256 = "03ag8vkbf85qww857ii8hcnn8bh5qa7rsmhka0v9vfxk272ifbyq";
18 propagatedBuildInputs = with python3.pkgs; [ tkinter ];
21 substituteInPlace Makefile --replace /bin/bash ${bash}/bin/bash
29 description = "Handwritten kanji recognition";
30 mainProgram = "kanjidraw";
32 kanjidraw is a simple Python library + GUI for matching (the strokes of a)
33 handwritten kanji against its database.
35 You can use the GUI to draw and subsequently select a kanji from the list of
36 probable matches, which will then be copied to the clipboard.
38 The database is based on KanjiVG and the algorithms are based on the
39 Kanji draw Android app.
41 homepage = "https://github.com/obfusk/kanjidraw";
42 license = with licenses; [
44 cc-by-sa-30 # data.json
46 maintainers = [ maintainers.obfusk ];