python.pkgs.jsonpickle: init at 0.9.5

This commit is contained in:
Frederik Rietdijk 2017-12-30 18:12:19 +01:00
parent 53fbd0617c
commit 364e5bce94
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "jsonpickle";
version = "0.9.5";
src = fetchPypi {
inherit pname version;
sha256 = "cc25dc79571d4ad7db59d05ddb7de0d76a8d598cf6136e1dbeaa9361ebcfe749";
};
doCheck = false;
meta = {
description = "Python library for serializing any arbitrary object graph into JSON";
homepage = http://jsonpickle.github.io/;
license = lib.licenses.bsd3;
};
}

View file

@ -5697,6 +5697,8 @@ in {
jsonpatch = callPackage ../development/python-modules/jsonpatch { };
jsonpickle = callPackage ../development/python-modules/jsonpickle { };
jsonpointer = buildPythonPackage rec {
name = "jsonpointer-1.9";