python3Packages.skl2onnx: 1.19.1 -> 1.20.0 (#505944)

This commit is contained in:
kirillrdy
2026-04-27 09:33:38 +00:00
committed by GitHub
@@ -14,14 +14,14 @@
unittestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "skl2onnx";
version = "1.19.1";
version = "1.20.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-DBBfKjuHpiTdIY0fuY/dGc8b9iFxkNJc5+FUhBJ9Dl0=";
inherit (finalAttrs) pname version;
hash = "sha256-x06oJ9kroYb+ZZaV6PyYnNl7/DIO3OPTK5k2pYeNoQo=";
};
build-system = [ setuptools ];
@@ -55,6 +55,7 @@ buildPythonPackage rec {
meta = {
description = "Convert scikit-learn models to ONNX";
changelog = "https://github.com/onnx/sklearn-onnx/releases/tag/${finalAttrs.version}";
license = with lib.licenses; [ asl20 ];
};
}
})