spack/var/spack/repos/builtin/packages/py-lmdb/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

25 lines
827 B
Python

# 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 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")
version("1.1.1", sha256="165cd1669b29b16c2d5cc8902b90fede15a7ee475c54d466f1444877a3f511ac")
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")