python3Packages.onnxconverter-common: init at 1.12.2

This commit is contained in:
Frederik Rietdijk 2022-09-27 13:47:25 +02:00 committed by Frederik Rietdijk
parent d2356bf415
commit 18f7d4c992
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, packaging
, protobuf
, onnx
, unittestCheckHook
, onnxruntime
}:
buildPythonPackage {
pname = "onnxconverter-common";
version = "1.12.2"; # Upstream no longer seems to push tags
format = "setuptools";
src = fetchFromGitHub {
owner = "microsoft";
repo = "onnxconverter-common";
rev = "814cdf494d987900d30b16971c0e8334aaca9ae6";
hash = "sha256-XA/kl8aT1wLthl1bMihtv/1ELOW1sGO/It5XfJtD+sY=";
};
propagatedBuildInputs = [
numpy
packaging # undeclared dependency
protobuf
onnx
];
checkInputs = [
onnxruntime
unittestCheckHook
];
unittestFlagsArray = [ "-s" "tests" ];
# Failing tests
# https://github.com/microsoft/onnxconverter-common/issues/242
doCheck = false;
meta = {
description = "ONNX Converter and Optimization Tools";
maintainers = with lib.maintainers; [ fridh ];
license = with lib.licenses; [ mit ];
};
}

View File

@ -6388,6 +6388,8 @@ in {
onnx = callPackage ../development/python-modules/onnx { };
onnxconverter-common = callPackage ../development/python-modules/onnxconverter-common { };
onnxruntime = (toPythonModule (pkgs.onnxruntime.override {
python3Packages = self;
pythonSupport = true;