biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / jsondiff / default.nix
blob5b5f67ce52640eff81feaa5b7696516547b41f5b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "jsondiff";
9   version = "2.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-J5WETvB17IorjThcTVn16kiwjnGA/OPLJ4e+DbALH7Q=";
15   };
17   postPatch = ''
18     sed -e "/'jsondiff=jsondiff.cli:main_deprecated',/d" -i setup.py
19   '';
21   # No tests
22   doCheck = false;
24   meta = {
25     description = "Diff JSON and JSON-like structures in Python";
26     mainProgram = "jdiff";
27     homepage = "https://github.com/ZoomerAnalytics/jsondiff";
28     license = lib.licenses.mit;
29   };