python3Packages.pytesseract: 0.3.0 -> 0.3.1

https://github.com/madmaze/pytesseract/releases/tag/v0.3.1
This commit is contained in:
Maximilian Bosch
2019-12-26 20:14:48 +01:00
parent 6f802abc13
commit b43892e767
2 changed files with 10 additions and 10 deletions

View File

@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "pytesseract";
version = "0.3.0";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "0n9vasm5fp25fmr9ns9i3bf4kri63s1mvmjgc6q8w7rx840ww7df";
sha256 = "1j7d4aa6v1nd3pd1vrfmkv8mbmw0x78cjfpkq3nxpy1r4hj5nwq3";
};
patches = [
@@ -24,7 +24,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = https://pypi.org/project/pytesseract/;
license = licenses.gpl3;
license = licenses.asl20;
description = "A Python wrapper for Google Tesseract";
maintainers = with maintainers; [ ma27 ];
};