fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
38 lines
681 B
Nix
38 lines
681 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
openvino-native,
|
|
numpy,
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "openvino";
|
|
inherit (openvino-native) version;
|
|
format = "other";
|
|
|
|
src = openvino-native.python;
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/${python.sitePackages}
|
|
cp -Rv * $out/${python.sitePackages}/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"openvino"
|
|
"openvino.runtime"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "OpenVINO(TM) Runtime";
|
|
homepage = "https://github.com/openvinotoolkit/openvino";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|