{ lib, buildPythonPackage, fetchPypi, }: buildPythonPackage rec { pname = "datadiff"; version = "2.2.0"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-fOcN/uqMM/HYjbRrDv/ukFzDa023Ofa7BwqC3omB0ws="; }; # Tests are not part of the PyPI releases doCheck = false; pythonImportsCheck = [ "datadiff" ]; meta = { description = "Library to provide human-readable diffs of Python data structures"; homepage = "https://sourceforge.net/projects/datadiff/"; license = lib.licenses.asl20; maintainers = [ ]; }; }