py-callmonitor: added new package (#38764)

* py-callmonitor: added new package

* depends_on numpy

* Update var/spack/repos/builtin/packages/py-callmonitor/package.py

Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>

---------

Co-authored-by: eugeneswalker <eugenesunsetwalker@gmail.com>
Co-authored-by: eugeneswalker <38933153+eugeneswalker@users.noreply.github.com>
Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>
This commit is contained in:
Dax Lynch 2023-07-12 11:19:57 -07:00 committed by GitHub
parent 5ba99b8eb2
commit 4fa7dc03ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# 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 PyCallmonitor(PythonPackage):
"""A Simple Tool to Monitor and Log Function Calls"""
homepage = "https://github.com/JBlaschke/call-monitor"
pypi = "callmonitor/callmonitor-0.3.7.tar.gz"
maintainers("DaxLynch")
version("0.3.7", sha256="11bacfe5940c3f6aff223e8e761b033d540542b4d738f7fef38cd923b3be0cbc")
depends_on("py-setuptools", type="build")
depends_on("py-numpy", type=("build", "run"))