New port: devel/py-jsonpickle: Python library for serializing any arbitrary object graph into JSON
This commit is contained in:
parent
24bca4aeb5
commit
c6a8430aee
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=481431
4 changed files with 33 additions and 0 deletions
|
@ -4670,6 +4670,7 @@
|
|||
SUBDIR += py-jsonlib2
|
||||
SUBDIR += py-jsonlines
|
||||
SUBDIR += py-jsonpatch
|
||||
SUBDIR += py-jsonpickle
|
||||
SUBDIR += py-jsonpointer
|
||||
SUBDIR += py-jsonref
|
||||
SUBDIR += py-jsonrpclib
|
||||
|
|
19
devel/py-jsonpickle/Makefile
Normal file
19
devel/py-jsonpickle/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jsonpickle
|
||||
DISTVERSION= 1.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= Python library for serializing any arbitrary object graph into JSON
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= distutils autoplist
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/py-jsonpickle/distinfo
Normal file
3
devel/py-jsonpickle/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1538893231
|
||||
SHA256 (jsonpickle-1.0.tar.gz) = d43ede55b3d9b5524a8e11566ea0b11c9c8109116ef6a509a1b619d2041e7397
|
||||
SIZE (jsonpickle-1.0.tar.gz) = 70899
|
10
devel/py-jsonpickle/pkg-descr
Normal file
10
devel/py-jsonpickle/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
|||
jsonpickle is a Python library for serialization and deserialization of complex
|
||||
Python objects to and from JSON. The standard Python libraries for encoding
|
||||
Python into JSON, such as the stdlib's json, simplejson, and demjson, can only
|
||||
handle Python primitives that have a direct JSON equivalent (e.g. dicts, lists,
|
||||
strings, ints, etc.). jsonpickle builds on top of these libraries and allows
|
||||
more complex data structures to be serialized to JSON. jsonpickle is highly
|
||||
configurable and extendable-allowing the user to choose the JSON backend and add
|
||||
additional backends.
|
||||
|
||||
WWW: https://jsonpickle.github.io/
|
Loading…
Reference in a new issue