2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2020-08-30 23:44:43 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyDeap(PythonPackage):
|
|
|
|
"""Distributed Evolutionary Algorithms in Python."""
|
|
|
|
|
|
|
|
homepage = "http://deap.readthedocs.org/"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "deap/deap-1.3.1.tar.gz"
|
2020-08-30 23:44:43 +08:00
|
|
|
|
|
|
|
version('1.3.1', sha256='11f54493ceb54aae10dde676577ef59fc52d52f82729d5a12c90b0813c857a2f')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-numpy', type=('build', 'run'))
|