summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-gpustat/package.py
blob: 9ebf7cc8cc99c9e36bf2bc23c55d836118acbc39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2020 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 PyGpustat(PythonPackage):
    """An utility to monitor NVIDIA GPU status and usage."""

    homepage = "https://github.com/wookayin/gpustat"
    pypi = "gpustat/gpustat-0.6.0.tar.gz"

    version('0.6.0', sha256='f69135080b2668b662822633312c2180002c10111597af9631bb02e042755b6c')

    depends_on('py-setuptools', type='build')
    depends_on('py-pytest-runner', type='build')
    depends_on('py-six@1.7:', type=('build', 'run'))
    depends_on('py-nvidia-ml-py@7.352.0:', when='^python@:2', type=('build', 'run'))
    depends_on('py-nvidia-ml-py3@7.352.0:', when='^python@3:', type=('build', 'run'))
    depends_on('py-psutil', type=('build', 'run'))
    depends_on('py-blessings@1.6:', type=('build', 'run'))