summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-loompy/package.py
blob: 487f2226072b4950099c1943d833e848113cf4ec (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
# Copyright 2013-2023 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 PyLoompy(PythonPackage):
    """Work with Loom files for single-cell RNA-seq data."""

    homepage = "https://github.com/linnarsson-lab/loompy"
    pypi = "loompy/loompy-3.0.7.tar.gz"

    license("BSD-2-Clause")

    version("3.0.7", sha256="b5cdf7b54734c6bed3a181d11947af70af2c6e0dcadc02fd0e871df232faa8f4")

    depends_on("python@3.6:", type=("build", "run"))

    depends_on("py-setuptools", type="build")

    depends_on("py-h5py", type=("build", "run"))
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-scipy", type=("build", "run"))
    depends_on("py-numba", type=("build", "run"))
    depends_on("py-click", type=("build", "run"))
    depends_on("py-numpy-groupies", type=("build", "run"))