python.pkgs.jsondiff: init at 1.1.1

This commit is contained in:
Frederik Rietdijk 2017-12-30 18:12:01 +01:00
parent 0619b37548
commit 53fbd0617c
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "jsondiff";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "2d0437782de9418efa34e694aa59f43d7adb1899bd9a793f063867ddba8f7893";
};
# No tests
doCheck = false;
meta = {
description = "Diff JSON and JSON-like structures in Python";
homepage = https://github.com/ZoomerAnalytics/jsondiff;
license = lib.licenses.mit;
};
}

View file

@ -9842,6 +9842,8 @@ in {
jsondate = callPackage ../development/python-modules/jsondate { };
jsondiff = callPackage ../development/python-modules/jsondiff { };
jsonnet = buildPythonPackage {
inherit (pkgs.jsonnet) name src;
# Python 3 is not yet supported https://github.com/google/jsonnet/pull/335