summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-deap/package.py
blob: a72a27616419b2d6a9a71743d1939a0ace69023b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2022 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 PyDeap(PythonPackage):
    """Distributed Evolutionary Algorithms in Python."""

    homepage = "https://deap.readthedocs.org/"
    pypi = "deap/deap-1.3.1.tar.gz"

    version('1.3.1', sha256='11f54493ceb54aae10dde676577ef59fc52d52f82729d5a12c90b0813c857a2f')

    depends_on('py-setuptools@:57', type='build')
    depends_on('py-numpy', type=('build', 'run'))