mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
substituteAll,
|
|
addDriverRunpath,
|
|
setuptools,
|
|
cudaPackages,
|
|
nvidia-ml-py,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nvidia-ml-py";
|
|
version = "12.560.30";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "tar.gz";
|
|
hash = "sha256-8CVNx0AGR2gKBy7gJQm/1GECtgvf7KMhV21NSBfn/pc=";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./0001-locate-libnvidia-ml.so.1-on-NixOS.patch;
|
|
inherit (addDriverRunpath) driverLink;
|
|
})
|
|
];
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pynvml" ];
|
|
|
|
passthru.tests.tester-nvmlInit =
|
|
cudaPackages.writeGpuTestPython { libraries = [ nvidia-ml-py ]; }
|
|
''
|
|
from pynvml import (
|
|
nvmlInit,
|
|
nvmlSystemGetDriverVersion,
|
|
nvmlDeviceGetCount,
|
|
nvmlDeviceGetHandleByIndex,
|
|
nvmlDeviceGetName,
|
|
)
|
|
|
|
nvmlInit()
|
|
print(f"Driver Version: {nvmlSystemGetDriverVersion()}")
|
|
|
|
for i in range(nvmlDeviceGetCount()):
|
|
handle = nvmlDeviceGetHandleByIndex(i)
|
|
print(f"Device {i} : {nvmlDeviceGetName(handle)}")
|
|
'';
|
|
|
|
meta = {
|
|
description = "Python Bindings for the NVIDIA Management Library";
|
|
homepage = "https://pypi.org/project/nvidia-ml-py";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|