nixpkgs/pkgs/development/python-modules/jsondiff/default.nix

24 lines
455 B
Nix
Raw Normal View History

2017-12-30 17:12:01 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "jsondiff";
2018-06-12 17:47:02 +01:00
version = "1.1.2";
2017-12-30 17:12:01 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:02 +01:00
sha256 = "7e18138aecaa4a8f3b7ac7525b8466234e6378dd6cae702b982c9ed851d2ae21";
2017-12-30 17:12:01 +00:00
};
# No tests
doCheck = false;
meta = {
description = "Diff JSON and JSON-like structures in Python";
homepage = https://github.com/ZoomerAnalytics/jsondiff;
license = lib.licenses.mit;
};
}