Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hocr-tools / default.nix
blobd5886a8893db6f72a08c120cc611b58a40a36719
1 { buildPythonPackage
2 , fetchFromGitHub
3 , lxml
4 , pillow
5 , reportlab
6 , lib
7 }:
8 buildPythonPackage rec {
9   pname = "hocr-tools";
10   version = "1.3.0";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "tmbdev";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "14f9hkp7pr677085w8iidwd0la9cjzy3pyj3rdg9b03nz9pc0w6p";
18   };
20   # hocr-tools uses a test framework that requires internet access
21   doCheck = false;
23   propagatedBuildInputs = [ pillow lxml reportlab ];
25   meta = with lib; {
26     description = "
27 Tools for manipulating and evaluating the hOCR format for representing multi-lingual OCR results by embedding them into HTML";
28     homepage = "https://github.com/tmbdev/hocr-tools";
29     license = licenses.asl20;
30     maintainers = [ maintainers.kiwi ];
31   };