croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / hocr-tools / default.nix
blob40d2653d6c0d2d8ce38437427c3e49d009c99db5
2   buildPythonPackage,
3   fetchFromGitHub,
4   lxml,
5   pillow,
6   reportlab,
7   lib,
8 }:
9 buildPythonPackage rec {
10   pname = "hocr-tools";
11   version = "1.3.0";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "tmbdev";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "14f9hkp7pr677085w8iidwd0la9cjzy3pyj3rdg9b03nz9pc0w6p";
19   };
21   # hocr-tools uses a test framework that requires internet access
22   doCheck = false;
24   propagatedBuildInputs = [
25     pillow
26     lxml
27     reportlab
28   ];
30   meta = with lib; {
31     description = "
32 Tools for manipulating and evaluating the hOCR format for representing multi-lingual OCR results by embedding them into HTML";
33     homepage = "https://github.com/tmbdev/hocr-tools";
34     license = licenses.asl20;
35     maintainers = [ ];
36   };