1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00

[NEW] devel/py3-jsonschema: JSON Schema validation for Python

- Python3 specific version for devel/py-jsonschema

jsonschema is an implementation of JSON Schema for Python

 - Full support for Draft 3 and Draft 4 of the schema.
 - Lazy validation that can iteratively report all validation errors.
 - Small and extensible
 - Programmatic querying of which properties or items failed validation.

WWW: http://github.com/Julian/jsonschema
This commit is contained in:
Muhammad Moinur Rahman 2015-11-20 06:29:19 +00:00
parent 2576e158ad
commit 924511e397
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=401987
4 changed files with 32 additions and 0 deletions

View File

@ -4477,6 +4477,7 @@
SUBDIR += py3-babel
SUBDIR += py3-dbus
SUBDIR += py3-gobject3
SUBDIR += py3-jsonschema
SUBDIR += py3-libpeas
SUBDIR += py3-pytz
SUBDIR += py3-vcversioner

View File

@ -0,0 +1,21 @@
# Created by: Muhammad Moinur Rahman <bofh@FreeBSD.org>
# $FreeBSD$
PORTNAME= jsonschema
PORTVERSION= 2.5.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= bofh@FreeBSD.org
COMMENT= JSON Schema validation for Python
LICENSE= MIT
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}vcversioner>0:${PORTSDIR}/devel/py3-vcversioner
USES= python:3
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (jsonschema-2.5.1.tar.gz) = 36673ac378feed3daa5956276a829699056523d7961027911f064b52255ead41
SIZE (jsonschema-2.5.1.tar.gz) = 50855

View File

@ -0,0 +1,8 @@
jsonschema is an implementation of JSON Schema for Python
- Full support for Draft 3 and Draft 4 of the schema.
- Lazy validation that can iteratively report all validation errors.
- Small and extensible
- Programmatic querying of which properties or items failed validation.
WWW: http://github.com/Julian/jsonschema