summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pysqlite3/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pysqlite3/package.py b/var/spack/repos/builtin/packages/py-pysqlite3/package.py
new file mode 100644
index 0000000000..72841002af
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pysqlite3/package.py
@@ -0,0 +1,26 @@
+# 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 PyPysqlite3(PythonPackage):
+ """DB-API 2.0 interface for Sqlite 3.x"""
+
+ homepage = "https://github.com/coleifer/pysqlite3"
+ pypi = "pysqlite3/pysqlite3-0.4.6.tar.gz"
+
+ version('0.4.6', sha256='7ec4d4c477fa96609c1517afbc33bf02747588e528e79c695de95907cea7bf30')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('sqlite', type=('build', 'link', 'run'))
+
+ def patch(self):
+ filter_file("^include_dirs *=.*",
+ "include_dirs = " + self.spec['sqlite'].headers.directories[0],
+ 'setup.cfg')
+ filter_file("^library_dirs *=.*",
+ "library_dirs = " + self.spec['sqlite'].libs.directories[0],
+ 'setup.cfg')