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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
# runtime dependencies
accelerate,
detectron2,
huggingface-hub,
layoutparser,
onnx,
onnxruntime,
opencv-python,
paddleocr,
python-multipart,
rapidfuzz,
transformers,
# check inputs
pytestCheckHook,
coverage,
click,
httpx,
mypy,
pytest-cov-stub,
pdf2image,
}:
buildPythonPackage rec {
pname = "unstructured-inference";
version = "1.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "Unstructured-IO";
repo = "unstructured-inference";
tag = version;
hash = "sha256-2yLBP2FNEn3tQV63qtlpz6mMjE4rsDr3JItYnpIU3iM=";
};
build-system = [ setuptools ];
dependencies = [
accelerate
huggingface-hub
layoutparser
onnx
onnxruntime
opencv-python
python-multipart
rapidfuzz
transformers
# detectron2 # fails to build
# paddleocr # 3.12 not yet supported
# yolox
]
++ layoutparser.optional-dependencies.layoutmodels
++ layoutparser.optional-dependencies.tesseract;
nativeCheckInputs = [
pytestCheckHook
coverage
click
httpx
mypy
pytest-cov-stub
pdf2image
huggingface-hub
];
# This dependency needs to be updated properly
doCheck = false;
preCheck = ''
export HOME=$(mktemp -d)
'';
disabledTests = [
# not sure why this fails
"test_get_path_oob_move_deeply_nested"
"test_get_path_oob_move_nested[False]"
# requires yolox
"test_yolox"
];
disabledTestPaths = [
# network access
"test_unstructured_inference/inference/test_layout.py"
"test_unstructured_inference/models/test_chippermodel.py"
"test_unstructured_inference/models/test_detectron2onnx.py"
# unclear failure
"test_unstructured_inference/models/test_donut.py"
"test_unstructured_inference/models/test_model.py"
"test_unstructured_inference/models/test_tables.py"
];
pythonImportsCheck = [ "unstructured_inference" ];
meta = {
description = "Hosted model inference code for layout parsing models";
homepage = "https://github.com/Unstructured-IO/unstructured-inference";
changelog = "https://github.com/Unstructured-IO/unstructured-inference/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ happysalada ];
platforms = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
};
}
|