summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-neobolt/package.py
blob: c5ba5477c50c9c67914c5ea7e0b9f5625ec7e0dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2022 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.package import *


class PyNeobolt(PythonPackage):
    """Neo4j Bolt connector for Python"""

    homepage = "https://github.com/neo4j-drivers/neobolt"
    pypi = "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'))