94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib
|
|
, python
|
|
, buildPythonPackage
|
|
, autoPatchelfHook
|
|
, unzip
|
|
, cudaPackages
|
|
}:
|
|
|
|
let
|
|
pyVersion = "${lib.versions.major python.version}${lib.versions.minor python.version}";
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "tensorrt";
|
|
version = cudaPackages.tensorrt.version;
|
|
|
|
src = cudaPackages.tensorrt.src;
|
|
|
|
format = "wheel";
|
|
# We unpack the wheel ourselves because of the odd packaging.
|
|
dontUseWheelUnpack = true;
|
|
|
|
nativeBuildInputs = [
|
|
unzip
|
|
autoPatchelfHook
|
|
cudaPackages.autoAddOpenGLRunpathHook
|
|
];
|
|
|
|
preUnpack = ''
|
|
mkdir -p dist
|
|
tar --strip-components=2 -xf "$src" --directory=dist \
|
|
"TensorRT-${version}/python/tensorrt-${version}-cp${pyVersion}-none-linux_x86_64.whl"
|
|
'';
|
|
|
|
sourceRoot = ".";
|
|
|
|
buildInputs = [
|
|
cudaPackages.cudnn
|
|
cudaPackages.tensorrt
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"tensorrt"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for TensorRT, a high-performance deep learning interface";
|
|
homepage = "https://developer.nvidia.com/tensorrt";
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ aidalgol ];
|
|
};
|
|
}
|