depot/third_party/nixpkgs/pkgs/development/python-modules/xmldiff/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

41 lines
752 B
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, lxml
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "xmldiff";
version = "2.6.3";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-GbAws/o30fC1xa2a2pBZiEw78sdRxd2PHrTtSc/j/GA=";
};
propagatedBuildInputs = [
lxml
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"xmldiff"
];
meta = with lib; {
description = "Creates diffs of XML files";
homepage = "https://github.com/Shoobx/xmldiff";
changelog = "https://github.com/Shoobx/xmldiff/blob/master/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}