27 lines
524 B
Bash
27 lines
524 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_4 )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Official library for accessing the Neo4j graph database"
|
|
HOMEPAGE="https://neo4j.com"
|
|
SRC_URI="https://github.com/neo4j/neo4j-python-driver/archive/${PV}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 arm"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${PF}"
|
|
|
|
#python_compile() {
|
|
# distutils-r1_python_compile
|
|
#}
|
|
|