python3Packages.pytesseract: 0.3.7 -> 0.3.8

ChangeLog: https://github.com/madmaze/pytesseract/releases/tag/v0.3.8
This commit is contained in:
Maximilian Bosch 2021-07-31 16:17:17 +02:00
parent ecc968543c
commit 45547332af
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E
2 changed files with 5 additions and 5 deletions

View file

@ -2,11 +2,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytesseract"; pname = "pytesseract";
version = "0.3.7"; version = "0.3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "4ecfc898d00a70fcc38d2bce729de1597c67e7bc5d2fa26094714c9f5b573645"; sha256 = "sha256-YUigHkN1dghi6PVupxjiK10TsoFFTfRuqNrJgHeT/Fo=";
}; };
patches = [ patches = [

View file

@ -1,7 +1,7 @@
diff --git a/src/pytesseract.py b/src/pytesseract.py diff --git a/pytesseract/pytesseract.py b/pytesseract/pytesseract.py
index 132f59b..f161e5c 100755 index 132f59b..f161e5c 100755
--- a/src/pytesseract.py --- a/pytesseract/pytesseract.py
+++ b/src/pytesseract.py +++ b/pytesseract/pytesseract.py
@@ -23,7 +23,7 @@ except ImportError: @@ -23,7 +23,7 @@ except ImportError:
import Image import Image