mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
87 lines
1.5 KiB
Nix
87 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonRelaxDepsHook
|
|
, pytest-runner
|
|
# runtime dependencies
|
|
, numpy
|
|
, onnx
|
|
, requests
|
|
, six
|
|
, flatbuffers
|
|
, protobuf
|
|
, tensorflow
|
|
# check dependencies
|
|
, pytestCheckHook
|
|
, graphviz
|
|
, parameterized
|
|
, pytest-cov
|
|
, pyyaml
|
|
, timeout-decorator
|
|
, onnxruntime
|
|
, keras
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tf2onnx";
|
|
version = "1.14.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "onnx";
|
|
repo = "tensorflow-onnx";
|
|
rev = "v${version}";
|
|
hash = "sha256-JpXwf+GLjn0krsb5KnEhVuemWa0V2+wF10neDsdtOfI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
pytest-runner
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"flatbuffers"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
onnx
|
|
requests
|
|
six
|
|
flatbuffers
|
|
protobuf
|
|
tensorflow
|
|
onnxruntime
|
|
];
|
|
|
|
pythonImportsCheck = [ "tf2onnx" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
graphviz
|
|
parameterized
|
|
pytest-cov
|
|
pyyaml
|
|
timeout-decorator
|
|
keras
|
|
];
|
|
|
|
# TODO investigate the failures
|
|
disabledTestPaths = [
|
|
"tests/test_backend.py"
|
|
"tests/test_einsum_helper.py"
|
|
"tests/test_einsum_optimizers.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_profile_conversion_time"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Convert TensorFlow, Keras, Tensorflow.js and Tflite models to ONNX";
|
|
homepage = "https://github.com/onnx/tensorflow-onnx";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|