tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.rapidocr-onnxruntime: use opencv-python
Robert Schütz
1 year ago
9985ebb0
e4467c1c
+2
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
rapidocr-onnxruntime
default.nix
+2
-5
pkgs/development/python-modules/rapidocr-onnxruntime/default.nix
···
10
11
setuptools,
12
pyclipper,
13
-
opencv4,
14
numpy,
15
six,
16
shapely,
···
90
91
dependencies = [
92
pyclipper
93
-
opencv4
94
numpy
95
six
96
shapely
···
98
pillow
99
onnxruntime
100
];
101
-
102
-
# Remove because we have adopted the `opencv4` as an attribute name.
103
-
pythonRemoveDeps = [ "opencv-python" ];
104
105
pythonImportsCheck = [ "rapidocr_onnxruntime" ];
106
···
10
11
setuptools,
12
pyclipper,
13
+
opencv-python,
14
numpy,
15
six,
16
shapely,
···
90
91
dependencies = [
92
pyclipper
93
+
opencv-python
94
numpy
95
six
96
shapely
···
98
pillow
99
onnxruntime
100
];
0
0
0
101
102
pythonImportsCheck = [ "rapidocr_onnxruntime" ];
103