gentoo/dev-python/Numdifftools/Numdifftools-0.9.16.ebuild
David Seifert 33f421d235
dev-python/Numdifftools: Version bump to 0.9.16, add py3.5 support
* EAPI=6

Package-Manager: portage-2.3.0
2016-09-05 11:19:10 +02:00

60 lines
1.4 KiB
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
inherit distutils-r1
MY_PN=numdifftools
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Solves automatic numerical differentiation problems in one or more variables"
HOMEPAGE="https://pypi.python.org/pypi/Numdifftools https://github.com/pbrod/numdifftools"
SRC_URI="https://github.com/pbrod/${PN,,}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="
>=dev-python/algopy-0.4[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
>=dev-python/numpy-1.9.0[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
>=sci-libs/scipy-0.8[${PYTHON_USEDEP}]
"
DEPEND="
>=dev-python/setuptools-0.9[${PYTHON_USEDEP}]
dev-python/setuptools_scm[${PYTHON_USEDEP}]
dev-python/pyscaffold[${PYTHON_USEDEP}]
test? (
${RDEPEND}
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
)"
S="${WORKDIR}"/${MY_P}
python_prepare_all() {
# pulls coverage test
sed \
-e '/tests_require/d' \
-i setup.py || die
# Upstream does not create proper tarballs anymore,
# and setuptools reacts allergically to Github tarballs
cat >> PKG-INFO <<-EOF || die
Name: ${PN,,}
Version: ${PV}
EOF
distutils-r1_python_prepare_all
}
python_test() {
esetup.py test
}