summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-neurolab/package.py
blob: f708b63569034b151cc8bc23cfe647bf20e52cb7 (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 PyNeurolab(PythonPackage):
    """Simple and powerfull neural network library for python"""

    homepage = "http://neurolab.googlecode.com/"
    pypi     = "neurolab/neurolab-0.3.5.tar.gz"

    version('0.3.5', sha256='96ec311988383c63664f3325668f27c30561cf4349e3bc5420665c042a3b9191')

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