pythonPackages.xmldiff: init at 2.4

This commit is contained in:
Stefan Frijters 2021-03-12 20:37:30 +01:00
parent 13319a6717
commit 12e3046a59
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, lxml
, setuptools
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "xmldiff";
version = "2.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Bb6iDOHyyWeGg7zODDupmB+H2StwnRkOAYvL8Efsz2M=";
};
propagatedBuildInputs = [ lxml setuptools six ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/Shoobx/xmldiff";
description = "Creates diffs of XML files";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}

View file

@ -8850,6 +8850,8 @@ in {
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
xmldiff = callPackage ../development/python-modules/xmldiff { };
xmljson = callPackage ../development/python-modules/xmljson { };
xmlschema = callPackage ../development/python-modules/xmlschema { };