commit: ef9974941a17891d7023b2a1bff931ff60a198bc Author: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT> de> AuthorDate: Sat Mar 16 18:46:20 2024 +0000 Commit: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT> de> CommitDate: Sat Mar 16 18:59:16 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ef997494
dev-python/jacobi: add 0.9.2 Closes: https://github.com/gentoo/sci/pull/1258 Signed-off-by: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik.de> dev-python/jacobi/jacobi-0.9.2.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-python/jacobi/jacobi-0.9.2.ebuild b/dev-python/jacobi/jacobi-0.9.2.ebuild new file mode 100644 index 000000000..f8605063c --- /dev/null +++ b/dev-python/jacobi/jacobi-0.9.2.ebuild @@ -0,0 +1,26 @@ +EAPI=8 + +PYTHON_COMPAT=( python3_{11..12} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="Numerical derivatives for analytic functions with arbitrary precision." +HOMEPAGE="https://github.com/HDembinski/jacobi" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/numpy-1.10[${PYTHON_USEDEP}] +" +BDEPEND="${RDEPEND}" + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_IGNORE=( + tests/bench.py + ) + epytest +}
