summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-motor/package.py
blob: 1983089573942debd62ff04fa20bb051ff083944 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyMotor(PythonPackage):
    """async Python driver for MongoDB and Tornado or asyncio"""

    homepage = "https://github.com/mongodb/motor/"
    pypi = "motor/motor-2.5.1.tar.gz"

    license("Apache-2.0")

    version("2.5.1", sha256="663473f4498f955d35db7b6f25651cb165514c247136f368b84419cb7635f6b8")

    depends_on("python@3.5.2:", type=("build", "run"))
    depends_on("py-pymongo@3.12:3", type=("build", "run"))
    depends_on("py-setuptools", type="build")