summary refs log tree commit diff
path: root/pkgs/development/python-modules/tesserocr/default.nix
blob: df1b02283043ccace6b54e003f98b06e784ca9c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  buildPythonPackage,
  fetchPypi,
  lib,
  # build dependencies
  cython,
  leptonica,
  pkg-config,
  tesseract,
  # extra python packages
  pillow
}:

buildPythonPackage rec {
  pname = "tesserocr";
  version = "2.5.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0cc7d4r11z26rhcwpmcc42fi9kr3f20nq5pk84jrczr18i0g99mh";
  };

  nativeBuildInputs = [ cython pkg-config ];
  buildInputs = [ leptonica tesseract ];
  propagatedBuildInputs = [ pillow ];

  meta = with lib; {
    description = "A simple, Pillow-friendly, wrapper around the tesseract-ocr API for Optical Character Recognition (OCR)";
    homepage = "https://github.com/sirfz/tesserocr";
    license = licenses.mit;
    maintainers = with maintainers; [ mtrsk ];
    platforms = platforms.linux;
  };
}