summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-bsddb3/package.py
blob: 038f2c7eab8c407f1cca1e69352b0aa0e01e3a97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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)

from spack import *


class PyBsddb3(PythonPackage):
    """This module provides a nearly complete wrapping of the Oracle/Sleepycat
       C API for the Database Environment, Database, Cursor, Log Cursor,
       Sequence and Transaction objects, and each of these is exposed
       as a Python type in the bsddb3.db module."""

    pypi = "bsddb3/bsddb3-6.2.5.tar.gz"

    version('6.2.5', sha256='784bf40ad935258507594a89b32ea11f362cde120751c8b96de163955ced7db8')

    depends_on('python@2.6:')
    depends_on('py-setuptools', type='build')
    depends_on('berkeley-db')

    # For testing... see here for an example that uses BerkeleyDB
    # http://code.activestate.com/recipes/189060-using-berkeley-db-database/