summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-kosh/package.py
blob: 23ec139e4d8f96394851ce62e6a7df0f72948f58 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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 PyKosh(PythonPackage):
    """
    Kosh allows codes to store, query, share data via an easy-to-use Python API.
    Kosh lies on top of Sina and can use any database backend supported by Sina.
    In adition Kosh aims to make data access and sharing as simple as possible.
    """

    homepage = "https://github.com/LLNL/kosh"
    url = "https://github.com/LLNL/kosh/archive/refs/tags/v2.0.tar.gz"

    # notify when the package is updated.
    maintainers("doutriaux1")

    license("MIT")

    version("3.0.1", sha256="e0d97c93476930ccfe8ed892517439d555760d66d57f9a8e52459fb5910ba398")
    version("2.2", sha256="3c79c3b7e7b64018ec5987dd7148886a6c619a28cda6f84e61a57439c9f3d7a3")
    version("2.1", sha256="597ed5beb4c3c3675b4af15ee7bfb60a463d5bda2222cd927061737ed073d562")
    version("2.0", sha256="059e431e3d3219b53956cb464d9e10933ca141dc89662f55d9c633e35c8b3a1e")

    depends_on("py-setuptools", type="build")
    depends_on("py-llnl-sina@1.11:", type=("build", "run"))
    depends_on("py-networkx", type=("build", "run"))
    depends_on("py-numpy", type=("build", "run"))

    with when("@3:"):
        depends_on("py-networkx@2.6:", type=("build", "run"))
        depends_on("py-numpy@1.20:", type=("build", "run"))
        depends_on("py-scipy", type=("build", "run"))
        depends_on("py-h5py@3:", type=("build", "run"))
        depends_on("py-scikit-learn@1.0.2:", type=("build", "run"))
        depends_on("py-pandas", type=("build", "run"))
        depends_on("py-hdbscan@0.8.29:", type=("build", "run"))
        depends_on("py-matplotlib", type=("build", "run"))
        depends_on("py-tqdm", type=("build", "run"))