Add python-peewee package

This commit is contained in:
Calin Crisan 2019-01-20 23:09:44 +02:00
parent dc1624f449
commit 02f1b58101
4 changed files with 24 additions and 0 deletions

View File

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

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_PEEWEE
bool "python-peewee"
depends on BR2_PACKAGE_PYTHON3
help
A little ORM.
https://github.com/coleifer/peewee

View File

@ -0,0 +1,2 @@
sha256 7f8e3f512ee0d4e2d9c2008ea446d69e23c9535466367b991d452825a1ddb654 peewee-3.8.2.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-peewee
#
################################################################################
PYTHON_PEEWEE_VERSION = 3.8.2
PYTHON_PEEWEE_SOURCE = peewee-$(PYTHON_PEEWEE_VERSION).tar.gz
PYTHON_PEEWEE_SITE = https://files.pythonhosted.org/packages/3b/10/619604d488416fb99a2f8ae145ae94f3ebac2812dbd1d334b0785ce7de2e
PYTHON_PEEWEE_SETUP_TYPE = setuptools
PYTHON_PEEWEE_LICENSE = Apache-2.0
PYTHON_PEEWEE_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))