summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-mmcv/package.py
blob: 7fc0ebd749aadbe1fb7fb55a56019a6d42cbec67 (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
# 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 PyMmcv(PythonPackage):
    """MMCV is a foundational python library for computer
    vision research and supports many research projects in
    MMLAB, such as MMDetection and MMAction."""

    homepage = "https://mmcv.readthedocs.io/en/latest/"
    url = "https://github.com/open-mmlab/mmcv/archive/v0.5.1.tar.gz"

    license("Apache-2.0")

    version("0.5.1", sha256="7c5ad30d9b61e44019e81ef46c406aa85dd08b5d0ba12ddd5cdc9c445835a55e")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-addict", type=("build", "run"))
    depends_on("py-numpy@1.11.1:", type=("build", "run"))
    depends_on("py-pyyaml", type=("build", "run"))
    depends_on("opencv+python3", type=("build", "run"))
    depends_on("py-cython", type="build")

    patch("opencv_for0.5.1.patch", when="@0.5.1")