summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-hyperopt/package.py
blob: 6cd8f64810cacd3062a3003563583942d8aac360 (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
# 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 PyHyperopt(PythonPackage):
    """Hyperopt is a Python library for serial and parallel optimization over
    awkward search spaces, which may include real-valued, discrete, and
    conditional dimensions."""

    homepage = "http://hyperopt.github.io/hyperopt/"
    pypi     = "hyperopt/hyperopt-0.2.5.tar.gz"

    version('0.2.5', sha256='bc6047d50f956ae64eebcb34b1fd40f186a93e214957f20e87af2f10195295cc')

    variant('spark', default=False, description="SparkTrials")
    variant('mongo', default=False, description="MongoTrials")
    variant('atpe',  default=False, description="ATPE")

    depends_on('python@2.7:',       type=('build', 'run'))
    depends_on('py-setuptools',     type='build')
    depends_on('py-numpy',          type=('build', 'run'))
    depends_on('py-scipy',          type=('build', 'run'))
    depends_on('py-six',            type=('build', 'run'))
    depends_on('py-networkx@2.2:',  type=('build', 'run'))
    depends_on('py-future',         type=('build', 'run'))
    depends_on('py-tqdm',           type=('build', 'run'))
    depends_on('py-cloudpickle',    type=('build', 'run'))
    depends_on('py-pyspark',        when="+spark",  type=('build', 'run'))
    depends_on('py-pymongo',        when="+mongo",  type=('build', 'run'))
    depends_on('py-scikit-learn',   when="+atpe",   type=('build', 'run'))
    depends_on('py-lightgbm',       when="+atpe",   type=('build', 'run'))