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

28 lines
550 B
Nix
Raw Normal View History

2017-12-30 17:12:01 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "jsondiff";
version = "1.3.0";
2017-12-30 17:12:01 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "5122bf4708a031b02db029366184a87c5d0ddd5a327a5884ee6cf0193e599d71";
2017-12-30 17:12:01 +00:00
};
postPatch = ''
sed -e "/'jsondiff=jsondiff.cli:main_deprecated',/d" -i setup.py
'';
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";
2017-12-30 17:12:01 +00:00
license = lib.licenses.mit;
};
2019-07-23 22:14:57 +01:00
}