summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-correctionlib/package.py
blob: 6243100b240b7987282f82202ddb8bfb0153e16b (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright 2013-2023 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 PyCorrectionlib(PythonPackage):
    """A generic correction library"""

    homepage = "https://github.com/cms-nanoAOD/correctionlib"
    pypi = "correctionlib/correctionlib-2.0.0.tar.gz"

    license("BSD-3-Clause")

    version("2.1.0", sha256="edf79644dc1d9d94f12b4b45366331e5da3f1e21d4cbcd3bb8b0d4b1421b0c44")
    version("2.0.0", sha256="e4d240cbdb2633a8955ddcd02d5b9bfb33d7e1a33554d6f7957f2dec56988a67")

    variant(
        "convert",
        default=False,
        description="Includes select conversion routines for common types",
    )

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools@42:", type="build")
    depends_on("py-setuptools-scm@3.4:+toml", type="build")
    depends_on("py-scikit-build", type="build")
    depends_on("py-cmake@3.11:", type="build")
    depends_on("py-make", type="build")
    depends_on("py-pybind11@2.6.1:", type="build")
    depends_on("py-numpy@1.13.3:", type=("build", "run"))
    depends_on("py-typing-extensions", type=("build", "run"), when="^python@:3.7")
    depends_on("py-pydantic@1.7.3:", type=("build", "run"))
    depends_on("py-rich", type=("build", "run"))
    depends_on("py-pandas", type=("build", "run"), when="+convert")
    depends_on("py-uproot@4.0.4:", type=("build", "run"), when="+convert")
    depends_on("py-requests", type=("build", "run"), when="+convert")