]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
python-jsonschema: new package
authorYegor Yefremov <yegorslists@googlemail.com>
Tue, 17 Jan 2017 10:17:23 +0000 (11:17 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 24 Jan 2017 09:55:41 +0000 (22:55 +1300)
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in
package/python-jsonschema/Config.in [new file with mode: 0644]
package/python-jsonschema/python-jsonschema.hash [new file with mode: 0644]
package/python-jsonschema/python-jsonschema.mk [new file with mode: 0644]

index cc09fba6f393be86373e0826650070ce4493cb77..809c995a9d272901a6b88501b0daa5520be16968 100644 (file)
@@ -705,6 +705,7 @@ menu "External python modules"
        source "package/python-ipython/Config.in"
        source "package/python-itsdangerous/Config.in"
        source "package/python-jinja2/Config.in"
+       source "package/python-jsonschema/Config.in"
        source "package/python-json-schema-validator/Config.in"
        source "package/python-keyring/Config.in"
        source "package/python-libconfig/Config.in"
diff --git a/package/python-jsonschema/Config.in b/package/python-jsonschema/Config.in
new file mode 100644 (file)
index 0000000..7002653
--- /dev/null
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PYTHON_JSONSCHEMA
+       bool "python-jsonschema"
+       help
+         An implementation of JSON Schema validation for Python.
+
+         http://github.com/Julian/jsonschema
diff --git a/package/python-jsonschema/python-jsonschema.hash b/package/python-jsonschema/python-jsonschema.hash
new file mode 100644 (file)
index 0000000..fc13630
--- /dev/null
@@ -0,0 +1,3 @@
+# md5 from https://pypi.python.org/pypi/jsonschema/json, sha256 locally computed
+md5    374e848fdb69a3ce8b7e778b47c30640  jsonschema-2.5.1.tar.gz
+sha256 36673ac378feed3daa5956276a829699056523d7961027911f064b52255ead41  jsonschema-2.5.1.tar.gz
diff --git a/package/python-jsonschema/python-jsonschema.mk b/package/python-jsonschema/python-jsonschema.mk
new file mode 100644 (file)
index 0000000..0fb2be8
--- /dev/null
@@ -0,0 +1,15 @@
+################################################################################
+#
+# python-jsonschema
+#
+################################################################################
+
+PYTHON_JSONSCHEMA_VERSION = 2.5.1
+PYTHON_JSONSCHEMA_SOURCE = jsonschema-$(PYTHON_JSONSCHEMA_VERSION).tar.gz
+PYTHON_JSONSCHEMA_SITE = https://pypi.python.org/packages/58/0d/c816f5ea5adaf1293a1d81d32e4cdfdaf8496973aa5049786d7fdb14e7e7
+PYTHON_JSONSCHEMA_SETUP_TYPE = setuptools
+PYTHON_JSONSCHEMA_LICENSE = MIT
+PYTHON_JSONSCHEMA_LICENSE_FILES = COPYING json/LICENSE
+PYTHON_JSONSCHEMA_DEPENDENCIES = host-python-vcversioner
+
+$(eval $(python-package))