python.pkgs.jsondiff: init at 1.1.1
This commit is contained in:
parent
0619b37548
commit
53fbd0617c
24
pkgs/development/python-modules/jsondiff/default.nix
Normal file
24
pkgs/development/python-modules/jsondiff/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user