package/python-dictdiffer: new package

We need to set --skip-dependency-check to prevent pytest-runner from
being required to build python-dictdiffer.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
James Hilliard 2024-04-01 15:23:42 -06:00 committed by Arnout Vandecappelle
parent 500070c105
commit c90e275718
4 changed files with 29 additions and 0 deletions

View file

@ -1071,6 +1071,7 @@ menu "External python modules"
source "package/python-decouple/Config.in"
source "package/python-defusedxml/Config.in"
source "package/python-dialog3/Config.in"
source "package/python-dictdiffer/Config.in"
source "package/python-dicttoxml/Config.in"
source "package/python-dicttoxml2/Config.in"
source "package/python-distro/Config.in"

View file

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_DICTDIFFER
bool "python-dictdiffer"
help
Dictdiffer is a library that helps you to diff and patch
dictionaries.
https://github.com/inveniosoftware/dictdiffer

View file

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/dictdiffer/json
md5 524b353b969300d4dc6aa6720c953657 dictdiffer-0.9.0.tar.gz
sha256 17bacf5fbfe613ccf1b6d512bd766e6b21fb798822a133aa86098b8ac9997578 dictdiffer-0.9.0.tar.gz
# Locally computed sha256 checksums
sha256 1f9e05b3b9a6fad24cc67455578bcdfd3e89b09a25c45369a5254203bbe2bdd3 LICENSE

View file

@ -0,0 +1,16 @@
################################################################################
#
# python-dictdiffer
#
################################################################################
PYTHON_DICTDIFFER_VERSION = 0.9.0
PYTHON_DICTDIFFER_SOURCE = dictdiffer-$(PYTHON_DICTDIFFER_VERSION).tar.gz
PYTHON_DICTDIFFER_SITE = https://files.pythonhosted.org/packages/61/7b/35cbccb7effc5d7e40f4c55e2b79399e1853041997fcda15c9ff160abba0
PYTHON_DICTDIFFER_SETUP_TYPE = setuptools
PYTHON_DICTDIFFER_LICENSE = MIT
PYTHON_DICTDIFFER_LICENSE_FILES = LICENSE
PYTHON_DICTDIFFER_DEPENDENCIES = host-python-setuptools-scm
PYTHON_DICTDIFFER_BUILD_OPTS = --skip-dependency-check
$(eval $(python-package))