Add python-peewee-migrate package

This commit is contained in:
Calin Crisan 2019-01-20 23:17:36 +02:00
parent c2cb4b57eb
commit 99510f7104
6 changed files with 26 additions and 2 deletions

View File

@ -885,6 +885,7 @@ menu "External python modules"
source "package/python-pathtools/Config.in"
source "package/python-pathvalidate/Config.in"
source "package/python-peewee/Config.in"
source "package/python-peewee-migrate/Config.in"
source "package/python-pexpect/Config.in"
source "package/python-pickleshare/Config.in"
source "package/python-picamera/Config.in"

View File

@ -1,5 +1,5 @@
config BR2_PACKAGE_PYTHON_MARSHMALLOW_PEEWEE
bool "python-peewee"
bool "python-marshmallow-peewee"
depends on BR2_PACKAGE_PYTHON3
help
Peewee integration with the marshmallow (de)serialization library.

View File

@ -1,6 +1,6 @@
################################################################################
#
# python-peewee
# python-marshmallow-peewee
#
################################################################################

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_PEEWEE_MIGRATE
bool "python-peewee-migrate"
depends on BR2_PACKAGE_PYTHON3
help
Simple migration engine for Peewee.
https://github.com/klen/peewee_migrate

View File

@ -0,0 +1,2 @@
sha256 bca15083d6e66cfdf66cecf69439ccad8a16738ced4304372a1cf7b1c9036d8a peewee_migrate-1.1.4.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-peewee-migrate
#
################################################################################
PYTHON_PEEWEE_MIGRATE_VERSION = 1.1.4
PYTHON_PEEWEE_MIGRATE_SOURCE = peewee_migrate-$(PYTHON_PEEWEE_MIGRATE_VERSION).tar.gz
PYTHON_PEEWEE_MIGRATE_SITE = https://files.pythonhosted.org/packages/64/d1/9a08e399631831e9230b702e79da67577228328f8abd0402ea7c72b9d6b8
PYTHON_PEEWEE_MIGRATE_SETUP_TYPE = setuptools
PYTHON_PEEWEE_MIGRATE_LICENSE = Apache-2.0
PYTHON_PEEWEE_MIGRATE_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))