new package: py-lmdb (#28239)

This commit is contained in:
Andrew W Elble 2022-01-04 19:59:16 -05:00 committed by GitHub
parent efc5d0a3b4
commit 422ae20a45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# Copyright 2013-2021 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)
class PyLmdb(PythonPackage):
""" Universal Python binding for the LMDB 'Lightning' Database"""
pypi = "lmdb/lmdb-1.3.0.tar.gz"
homepage = "https://github.com/jnwatson/py-lmdb/"
version('1.3.0', sha256='60a11efc21aaf009d06518996360eed346f6000bfc9de05114374230879f992e')
depends_on('python@2.7:2,3.4:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('lmdb')
def setup_build_environment(self, env):
env.set('LMDB_FORCE_SYSTEM', '1')