New package: py-motor (#30763)

* New package: py-motor

* Fixed dependency errors

* Fixed flake style errors

* Fixed linked issue

Co-authored-by: Viv Eric Hafener <vehrc@sporcbuild.rc.rit.edu>
This commit is contained in:
Jen Herting 2022-05-21 12:36:37 -04:00 committed by GitHub
parent 870b997cb6
commit c6c3d243e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
# Copyright 2013-2022 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 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"
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')