summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2021-08-28 01:22:35 +0200
committerGitHub <noreply@github.com>2021-08-27 17:22:35 -0600
commit9577d890c458c6025d51f699005a5dc5b6ac4f42 (patch)
treeb2d4777be60bad3099dd65f7df031fa42cbaa42c
parentf5ab3ad82a62585589296ff37ebf7af1aed8303f (diff)
downloadspack-9577d890c458c6025d51f699005a5dc5b6ac4f42.tar.gz
spack-9577d890c458c6025d51f699005a5dc5b6ac4f42.tar.bz2
spack-9577d890c458c6025d51f699005a5dc5b6ac4f42.tar.xz
spack-9577d890c458c6025d51f699005a5dc5b6ac4f42.zip
add py-flameprof (#25539)
-rw-r--r--var/spack/repos/builtin/packages/py-flameprof/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-flameprof/package.py b/var/spack/repos/builtin/packages/py-flameprof/package.py
new file mode 100644
index 0000000000..7e97b48a69
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-flameprof/package.py
@@ -0,0 +1,19 @@
+# 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)
+
+from spack import *
+
+
+class PyFlameprof(PythonPackage):
+ """Flamegraph generator for python's cProfile stats."""
+
+ homepage = "https://github.com/baverman/flameprof/"
+ pypi = "flameprof/flameprof-0.4.tar.gz"
+
+ maintainers = ['haampie']
+
+ version('0.4', sha256='dbc86d4190cbbba624f1e0a40f44d9db96138e27534d83c8ef42d420857875a3')
+
+ depends_on('py-setuptools', type='build')