Installed NVIDIA-Linux-x86_64-535.54.03.run, but no nvml.h

I have installed the cuda driver as well as cuda_12.2.0_535.54.03_linux.run on Debian 12, and now I am going to build slurm from source (slurm-23.02.3.tar.bz2). However, the configure script can’t find the header file, nvml.h; it doesn’t seem to be included in the installation files.

root@zorn:~/slurm-23.02.3# ./configure --with-nvml

LZ4 test program built properly.
checking for hwloc installation… /usr
checking for nvml.h… no
checking for nvmlInit in -lnvidia-ml… yes
configure: error: unable to locate libnvidia-ml.so and/or nvml.h

It seems to find libnvidia-ml.so, but I think that comes from the hwloc package:

root@zorn:~/slurm-23.02.3# find / -xdev -name libnvidia-ml.so
/usr/lib32/libnvidia-ml.so
/usr/lib/x86_64-linux-gnu/libnvidia-ml.so
root@zorn:~/slurm-23.02.3# find / -xdev -name nvml.h
/usr/include/hwloc/nvml.h

Where can I find the files that are suitable for this driver?