1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pythonOlder,
6}:
7
8buildPythonPackage rec {
9 pname = "datadiff";
10 version = "2.2.0";
11 format = "setuptools";
12
13 disabled = pythonOlder "3.7";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-fOcN/uqMM/HYjbRrDv/ukFzDa023Ofa7BwqC3omB0ws=";
18 };
19
20 # Tests are not part of the PyPI releases
21 doCheck = false;
22
23 pythonImportsCheck = [ "datadiff" ];
24
25 meta = with lib; {
26 description = "Library to provide human-readable diffs of Python data structures";
27 homepage = "https://sourceforge.net/projects/datadiff/";
28 license = licenses.asl20;
29 maintainers = [ ];
30 };
31}