python-cssselect: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2016-01-14 09:25:17 +01:00 committed by Thomas Petazzoni
parent dee5e96173
commit aa112f2396
4 changed files with 25 additions and 0 deletions

View file

@ -629,6 +629,7 @@ menu "External python modules"
source "package/python-configobj/Config.in"
source "package/python-configshell-fb/Config.in"
source "package/python-crc16/Config.in"
source "package/python-cssselect/Config.in"
source "package/python-daemon/Config.in"
source "package/python-dialog/Config.in"
source "package/python-django/Config.in"

View file

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_CSSSELECT
bool "python-cssselect"
help
cssselect parses CSS3 Selectors and translates them to XPath 1.0
http://packages.python.org/cssselect/

View file

@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/cssselect/json
md5 c74f45966277dc7a0f768b9b0f3522ac cssselect-0.9.1.tar.gz
# sha256 calculated by scanpypi
sha256 0535a7e27014874b27ae3a4d33e8749e345bdfa62766195208b7996bf1100682 cssselect-0.9.1.tar.gz

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-cssselect
#
################################################################################
PYTHON_CSSSELECT_VERSION = 0.9.1
PYTHON_CSSSELECT_SOURCE = cssselect-$(PYTHON_CSSSELECT_VERSION).tar.gz
PYTHON_CSSSELECT_SITE = https://pypi.python.org/packages/source/c/cssselect
PYTHON_CSSSELECT_SETUP_TYPE = setuptools
PYTHON_CSSSELECT_LICENSE = BSD-3c
PYTHON_CSSSELECT_LICENSE_FILES = LICENSE
$(eval $(python-package))