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:
parent
500070c105
commit
c90e275718
4 changed files with 29 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
7
package/python-dictdiffer/Config.in
Normal file
7
package/python-dictdiffer/Config.in
Normal 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
|
||||
5
package/python-dictdiffer/python-dictdiffer.hash
Normal file
5
package/python-dictdiffer/python-dictdiffer.hash
Normal 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
|
||||
16
package/python-dictdiffer/python-dictdiffer.mk
Normal file
16
package/python-dictdiffer/python-dictdiffer.mk
Normal 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))
|
||||
Loading…
Add table
Reference in a new issue