summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorStephanie Brink <brink2@llnl.gov>2020-03-11 17:23:32 -0700
committerGitHub <noreply@github.com>2020-03-11 19:23:32 -0500
commit6af8e19b2d96700ae9699f0e0568037f51b0d9e9 (patch)
tree0264d8995ac12adef1a6038f73e8407175582d74 /var
parent12940f344850805d37279111ec799eb838f31f0c (diff)
downloadspack-6af8e19b2d96700ae9699f0e0568037f51b0d9e9.tar.gz
spack-6af8e19b2d96700ae9699f0e0568037f51b0d9e9.tar.bz2
spack-6af8e19b2d96700ae9699f0e0568037f51b0d9e9.tar.xz
spack-6af8e19b2d96700ae9699f0e0568037f51b0d9e9.zip
add hatchet python package (#15428)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-hatchet/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-hatchet/package.py b/var/spack/repos/builtin/packages/py-hatchet/package.py
new file mode 100644
index 0000000000..91df70b61b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-hatchet/package.py
@@ -0,0 +1,27 @@
+# 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)
+
+from spack import *
+
+
+class PyHatchet(PythonPackage):
+ """Hatchet is an analysis tool for structured tree or graph performance data
+ using an indexed Pandas dataframe."""
+
+ homepage = "https://github.com/LLNL/hatchet"
+ url = "https://github.com/LLNL/hatchet/archive/v1.0.0.tar.gz"
+
+ maintainers = ["slabasan", "bhatele", "tgamblin"]
+
+ version('1.0.0', sha256='efd218bc9152abde0a8006489a2c432742f00283a114c1eeb6d25abc10f5862d')
+
+ depends_on('python@2.7,3:', type=('build', 'run'))
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-matplotlib', type=('build', 'run'))
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-pandas', type=('build', 'run'))
+ depends_on('py-pydot', type=('build', 'run'))
+ depends_on('py-pyyaml', type=('build', 'run'))