1{ lib 2, buildPythonPackage 3, fetchPypi 4, lxml 5, setuptools 6, six 7, pytestCheckHook 8}: 9 10buildPythonPackage rec { 11 pname = "xmldiff"; 12 version = "2.4"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "sha256-Bb6iDOHyyWeGg7zODDupmB+H2StwnRkOAYvL8Efsz2M="; 17 }; 18 19 propagatedBuildInputs = [ lxml setuptools six ]; 20 21 checkInputs = [ pytestCheckHook ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/Shoobx/xmldiff"; 25 description = "Creates diffs of XML files"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ sfrijters ]; 28 }; 29}