pythonPackages.xmldiff: init at 2.4
This commit is contained in:
parent
13319a6717
commit
12e3046a59
29
pkgs/development/python-modules/xmldiff/default.nix
Normal file
29
pkgs/development/python-modules/xmldiff/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -8850,6 +8850,8 @@ in {
|
|||||||
|
|
||||||
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
|
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
|
||||||
|
|
||||||
|
xmldiff = callPackage ../development/python-modules/xmldiff { };
|
||||||
|
|
||||||
xmljson = callPackage ../development/python-modules/xmljson { };
|
xmljson = callPackage ../development/python-modules/xmljson { };
|
||||||
|
|
||||||
xmlschema = callPackage ../development/python-modules/xmlschema { };
|
xmlschema = callPackage ../development/python-modules/xmlschema { };
|
||||||
|
Loading…
Reference in New Issue
Block a user