mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
42 lines
752 B
Nix
42 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 ];
|
|
};
|
|
}
|