summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-histogrammar/package.py
blob: 929d7fed731cee44e263c89b70881abb2ec6b537 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2013-2024 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 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.31", sha256="3fd93646d568129637b6be0b98a6fab575eaf7426cb9f709a36908190cae85c5")
    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"))
    # Caught by tests
    depends_on("py-pandas", type="run")