PyNVTX: added new package (#38763)

This commit is contained in:
Dax Lynch 2023-07-07 18:02:21 -07:00 committed by GitHub
parent 2dc76248d3
commit b2dcd9bd42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,26 @@
# Copyright 2013-2022 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)
from spack.package import *
class PyPynvtx(PythonPackage):
"""A thin python wrapper for the nvToolsExt (NVTX) library, using
pybind11. This wrapper is meant to be as thin as possible -- so
only provides minimal support. Currently supported features are:
NVTX annotations: nvtxRangePushA and nvtxRangePop
Function decorator: PyNVTX.annotate
Automatic decorator generation PyNVTX.annotate_all_methods()"""
homepage = "https://github.com/JBlaschke/PyNVTX"
pypi = "PyNVTX/PyNVTX-0.3.3.tar.gz"
maintainers("DaxLynch")
version("0.3.3", sha256="8877b2d90bbf9d279d517a80a8f35a0a0a8179ebabf0729e806798a84bee6c72")
depends_on("py-setuptools@40.8:", type="build")
depends_on("py-pybind11", type=("build", "link", "run"))