ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / xmldiff / default.nix
blob1dfb091475898c2586dad5145f9f84b5bedaa6ad
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , lxml
5 , setuptools
6 , six
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "xmldiff";
12   version = "2.4";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-Bb6iDOHyyWeGg7zODDupmB+H2StwnRkOAYvL8Efsz2M=";
17   };
19   propagatedBuildInputs = [ lxml setuptools six ];
21   checkInputs = [ pytestCheckHook ];
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   };