mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
python3Packages.onnxconverter-common: init at 1.12.2
This commit is contained in:
parent
d2356bf415
commit
18f7d4c992
@ -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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user