53 lines
1.1 KiB
Nix
53 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
|
||
|
];
|
||
|
|
||
|
pythonCheckImports = [
|
||
|
"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 ];
|
||
|
};
|
||
|
}
|