ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / jsondiff / default.nix
blobb6d6401b455f6e5ccd7c84fb955cc642bc8f9359
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "jsondiff";
8   version = "2.0.0";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-J5WETvB17IorjThcTVn16kiwjnGA/OPLJ4e+DbALH7Q=";
13   };
15   postPatch = ''
16     sed -e "/'jsondiff=jsondiff.cli:main_deprecated',/d" -i setup.py
17   '';
19   # No tests
20   doCheck = false;
22   meta = {
23     description = "Diff JSON and JSON-like structures in Python";
24     homepage = "https://github.com/ZoomerAnalytics/jsondiff";
25     license = lib.licenses.mit;
26   };