summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-scikit-fuzzy/package.py
blob: 660d1c1e054a98d4ed3fdd2513c018d484f66848 (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
# Copyright 2013-2024 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 PyScikitFuzzy(PythonPackage):
    """Fuzzy logic toolkit for SciPy"""

    homepage = "https://github.com/scikit-fuzzy/scikit-fuzzy"
    pypi = "scikit-fuzzy/scikit-fuzzy-0.4.2.tar.gz"

    license("BSD-3-Clause")

    version("0.4.2", sha256="1ab12424d847ede1bc79670d8058167be7c8dd660b00756e9b844817ceb1e12e")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type=("build",))
    depends_on("py-networkx@1.9:", type=("build", "run"))
    depends_on("py-numpy@1.6:", type=("build", "run"))
    depends_on("py-scipy@0.9:", type=("build", "run"))