update pylitterbot-2022.8.2

add deepdiff-5.8.1
This commit is contained in:
2022-09-03 13:22:27 +02:00
committed by Andreas Billmeier
parent f1045ae504
commit 6fb5b17274
7 changed files with 68 additions and 10 deletions

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Deep Difference and Search of any Python object/data."
HOMEPAGE="https://github.com/seperman/deepdiff https://pypi.org/project/deepdiff/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/ordered-set-4.0.2[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest