python3Packages.skl2onnx: relax scikit-learn version requirements

This commit is contained in:
Lein Matsumaru 2022-10-22 09:53:17 +00:00 committed by Frederik Rietdijk
parent 4e0ad66f8c
commit 06dd62f9b4

View File

@ -10,6 +10,7 @@
, onnxruntime
, pandas
, unittestCheckHook
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
@ -30,6 +31,12 @@ buildPythonPackage rec {
onnxconverter-common
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [ "scikit-learn" ];
checkInputs = [
onnxruntime
pandas