biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / kanjidraw / default.nix
blob0d5189474729aeca3d4a2d482f74a3edd5043fd3
1 { lib
2 , fetchFromGitHub
3 , python3
4 , bash
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "kanjidraw";
9   version = "0.2.3";
11   src = fetchFromGitHub {
12     owner = "obfusk";
13     repo = "kanjidraw";
14     rev = "v${version}";
15     sha256 = "03ag8vkbf85qww857ii8hcnn8bh5qa7rsmhka0v9vfxk272ifbyq";
16   };
18   propagatedBuildInputs = with python3.pkgs; [ tkinter ];
20   postPatch = ''
21     substituteInPlace Makefile --replace /bin/bash ${bash}/bin/bash
22   '';
24   checkPhase = ''
25     make test
26   '';
28   meta = with lib; {
29     description = "Handwritten kanji recognition";
30     mainProgram = "kanjidraw";
31     longDescription = ''
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.
40     '';
41     homepage = "https://github.com/obfusk/kanjidraw";
42     license = with licenses; [
43       agpl3Plus     # code
44       cc-by-sa-30   # data.json
45     ];
46     maintainers = [ maintainers.obfusk ];
47   };