Unverified Commit dfa1e698 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

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

parents fed54261 9f39b8ec
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})