nixpkgs/pkgs/development/python-modules/easyocr/default.nix
Martin Weinelt cddb66d655
python310Packages.scikit-image: rename from scikitimage
to match the pname and create an alias for the former name.
2023-05-14 13:04:10 +02:00

62 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, hdf5
, numpy
, opencv3
, pillow
, pyaml
, pyclipper
, python-bidi
, torch
, scikit-image
, scipy
, shapely
, torchvision
, onnx
}:
buildPythonPackage rec {
pname = "easyocr";
version = "1.6.2";
src = fetchFromGitHub {
owner = "JaidedAI";
repo = "EasyOCR";
rev = "v${version}";
hash = "sha256-f+JBSnFMRvVlhRRiL1rJb7a0CNjZPuh6r8r3K1meQCk=";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace "opencv-python-headless<=4.5.4.60" "" \
--replace "ninja" ""
'';
propagatedBuildInputs = [
scikit-image
hdf5
python-bidi
numpy
opencv3
torchvision
pillow
pyaml
pyclipper
torch
scipy
shapely
];
nativeCheckInputs = [ onnx ];
pythonImportsCheck = [ "easyocr" ];
meta = with lib; {
description = "Ready-to-use OCR with 80+ supported languages and all popular writing scripts";
homepage = "https://github.com/JaidedAI/EasyOCR";
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
};
}