
* Update URL for new py2neo versions * Use pypi for py-py2neo * Add version 4.3.0 * Update py2neo dependencies * Apply suggestions from code review Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
19 lines
640 B
Python
19 lines
640 B
Python
# Copyright 2013-2020 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 PyNeobolt(PythonPackage):
|
|
"""Neo4j Bolt connector for Python"""
|
|
|
|
homepage = "https://github.com/neo4j-drivers/neobolt"
|
|
url = "https://pypi.io/packages/source/n/neobolt/neobolt-1.7.16.tar.gz"
|
|
|
|
version('1.7.16', sha256='ca4e87679fe3ed39aec23638658e02dbdc6bbc3289a04e826f332e05ab32275d')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
|