New package: py-pysqlite3 (#28020)
* New package: py-pysqlite3 * Apply suggestions from code review Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
parent
b0f996c8ef
commit
351a1d8d37
26
var/spack/repos/builtin/packages/py-pysqlite3/package.py
Normal file
26
var/spack/repos/builtin/packages/py-pysqlite3/package.py
Normal file
@ -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')
|
Loading…
Reference in New Issue
Block a user