diff options
author | iarspider <iarspider@gmail.com> | 2021-12-13 18:55:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-13 11:55:09 -0600 |
commit | ec8ef9d292899ddb61e0d8d12f408ca011a4c9e1 (patch) | |
tree | 6f677d1213d19dc8183b8843a76eea146ccd6da1 | |
parent | 7836b60825d5cb273edf46b1a1013979027815bc (diff) | |
download | spack-ec8ef9d292899ddb61e0d8d12f408ca011a4c9e1.tar.gz spack-ec8ef9d292899ddb61e0d8d12f408ca011a4c9e1.tar.bz2 spack-ec8ef9d292899ddb61e0d8d12f408ca011a4c9e1.tar.xz spack-ec8ef9d292899ddb61e0d8d12f408ca011a4c9e1.zip |
New package: py-histogrammar (#27957)
-rw-r--r-- | var/spack/repos/builtin/packages/py-histogrammar/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-histogrammar/package.py b/var/spack/repos/builtin/packages/py-histogrammar/package.py new file mode 100644 index 0000000000..f0327610cb --- /dev/null +++ b/var/spack/repos/builtin/packages/py-histogrammar/package.py @@ -0,0 +1,21 @@ +# 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 PyHistogrammar(PythonPackage): + """Composable histogram primitives for distributed data reduction.""" + + homepage = "https://histogrammar.github.io/histogrammar-docs" + pypi = "histogrammar/histogrammar-1.0.25.tar.gz" + + version('1.0.25', sha256='01d5f99cdb8dce8f02dd1adbfcc530a097154f3696d7778d0ed596d06d5ce432') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-numpy@1.18.0:', type=('build', 'run')) + depends_on('py-tqdm', type=('build', 'run')) + depends_on('py-joblib@0.14.0:', type=('build', 'run')) |