new package: py-lmdb (#28239)
This commit is contained in:
parent
efc5d0a3b4
commit
422ae20a45
20
var/spack/repos/builtin/packages/py-lmdb/package.py
Normal file
20
var/spack/repos/builtin/packages/py-lmdb/package.py
Normal 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')
|
Loading…
Reference in New Issue
Block a user