gentoo/dev-python/nnpy/nnpy-1.1.ebuild
Alexis Ballier fdca527edc
dev-python/nnpy: initial import; ebuild by me
Package-Manager: portage-2.2.28
2016-05-03 11:54:29 +02:00

29 lines
547 B
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
inherit distutils-r1
DESCRIPTION="cffi-based Python bindings for nanomsg"
HOMEPAGE="https://github.com/nanomsg/nnpy"
SRC_URI="https://github.com/nanomsg/nnpy/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
dev-python/cffi[${PYTHON_USEDEP}]
dev-libs/nanomsg
"
RDEPEND="${DEPEND}"
python_test() {
"${PYTHON}" "${S}/test.py" || die
}