summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-bsddb3/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-bsddb3/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-bsddb3/package.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/py-bsddb3/package.py b/var/spack/repos/builtin/packages/py-bsddb3/package.py
index e7423387a8..bf019cd809 100644
--- a/var/spack/repos/builtin/packages/py-bsddb3/package.py
+++ b/var/spack/repos/builtin/packages/py-bsddb3/package.py
@@ -8,17 +8,17 @@ from spack.package 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."""
+ 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')
+ version("6.2.5", sha256="784bf40ad935258507594a89b32ea11f362cde120751c8b96de163955ced7db8")
- depends_on('python@2.6:')
- depends_on('py-setuptools', type='build')
- depends_on('berkeley-db')
+ 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
# https://code.activestate.com/recipes/189060-using-berkeley-db-database/