5772ac5a75
In the past I was very active with Python packaging. For several years now I was hardly around as maintainer, so it does not make sense I am listed as a maintainer for these makes. Looking back, I should have removed myself as maintainer already much longer ago. Anyway, better late than never. It's been a fun ride, and I do intend to occasionally contribute to Nixpkgs, but not in the same way it once was.
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, numpy
|
|
, packaging
|
|
, protobuf
|
|
, onnx
|
|
, unittestCheckHook
|
|
, onnxruntime
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "onnxconverter-common";
|
|
version = "1.14.0";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "onnxconverter-common";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-NbHyjLcr/Gq1zRiJW3ZBpEVQGVQGhp7SmfVd5hBIi2o=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
packaging
|
|
protobuf
|
|
onnx
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"onnxconverter_common"
|
|
];
|
|
|
|
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";
|
|
homepage = "https://github.com/microsoft/onnxconverter-common";
|
|
changelog = "https://github.com/microsoft/onnxconverter-common/releases/tag/v${version}";
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|