depot/third_party/nixpkgs/pkgs/development/python-modules/onnxconverter-common/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

48 lines
964 B
Nix

{ 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
];
nativeCheckInputs = [
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 ];
};
}