nixpkgs-suyu/pkgs/development/python-modules/easyocr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.2 KiB
Nix
Raw Normal View History

2022-10-19 06:10:59 +02:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, hdf5
, numpy
, onnx
2022-10-19 06:10:59 +02:00
, opencv3
, pillow
, pyaml
, pyclipper
, python-bidi
, pythonOlder
, scikit-image
2022-10-19 06:10:59 +02:00
, scipy
, shapely
, torch
2022-10-19 06:10:59 +02:00
, torchvision
}:
buildPythonPackage rec {
pname = "easyocr";
version = "1.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
2022-10-19 06:10:59 +02:00
src = fetchFromGitHub {
owner = "JaidedAI";
repo = "EasyOCR";
rev = "refs/tags/v${version}";
hash = "sha256-01Exz55eTIO/xzdq/dzV+ELkU75hpxe/EbjIqLBA8h0=";
2022-10-19 06:10:59 +02:00
};
postPatch = ''
substituteInPlace requirements.txt \
--replace "opencv-python-headless" "" \
2022-10-19 06:10:59 +02:00
--replace "ninja" ""
'';
propagatedBuildInputs = [
hdf5
numpy
opencv3
pillow
pyaml
pyclipper
python-bidi
scikit-image
2022-10-19 06:10:59 +02:00
scipy
shapely
torch
torchvision
2022-10-19 06:10:59 +02:00
];
nativeCheckInputs = [
onnx
];
2022-10-19 06:10:59 +02:00
pythonImportsCheck = [
"easyocr"
];
2022-10-19 06:10:59 +02:00
meta = with lib; {
description = "Ready-to-use OCR with 80+ supported languages and all popular writing scripts";
homepage = "https://github.com/JaidedAI/EasyOCR";
changelog = "https://github.com/JaidedAI/EasyOCR/releases/tag/v${version}";
2022-10-19 06:10:59 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
};
}