
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
20 lines
772 B
Python
20 lines
772 B
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
class PyPynvml(PythonPackage):
|
|
"""Provides a Python interface to GPU management and monitoring
|
|
functions. This is a wrapper around the NVML library. For
|
|
information about the NVML library, see the NVML developer page
|
|
http://developer.nvidia.com/nvidia-management-library-nvml"""
|
|
|
|
homepage = "http://www.nvidia.com/"
|
|
pypi = "pynvml/pynvml-8.0.4.tar.gz"
|
|
|
|
version('8.0.4', sha256='c8d4eadc648c7e12a3c9182a9750afd8481b76412f83747bcc01e2aa829cde5d')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('python@3.6:', type=('build', 'run'))
|