nixpkgs/pkgs/development/python-modules/jsondiff/default.nix
Wael M. Nasreddine d99c6ccece
jsondiff: patch setup.py to prevent creating bin/jsondiff
pythonPackages.jsonpatch also creates bin/jsondiff, and packages
depending on both are not usable.
2019-07-24 22:33:31 -07:00

28 lines
536 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "jsondiff";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "00v3689175aqzdscrxpffm712ylp8jvcpqdg51ca22ni6721p51l";
};
postPatch = ''
sed -e "/'jsondiff=jsondiff.cli:main_deprecated',/d" -i setup.py
'';
# No tests
doCheck = false;
meta = {
description = "Diff JSON and JSON-like structures in Python";
homepage = https://github.com/ZoomerAnalytics/jsondiff;
license = lib.licenses.mit;
};
}