summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-picard/package.py
blob: 9f181a80b23901eee323d9313ecaa2777a9d2c30 (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
# 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 PyPythonPicard(PythonPackage):
    """Preconditoned ICA for Real Data."""

    homepage = "https://pierreablin.github.io/picard/"
    pypi = "python-picard/python-picard-0.6.tar.gz"

    license("BSD-3-Clause")

    version("0.6", sha256="dad377c9a50f9850f85841eba0ffb58ad557885ca93364bb73153f33210b52e2")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-numpy@1.8:", type=("build", "run"))
    depends_on("py-matplotlib@1.3:", type=("build", "run"))
    depends_on("py-scipy@0.16:", type=("build", "run"))
    depends_on("py-numexpr@2.0:", type=("build", "run"))
    depends_on("py-scikit-learn@0.23:", type=("build", "run"))