Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib
2, buildPythonPackage
3, fetchPypi
4, lxml
5, setuptools
6, six
7, pytestCheckHook
8}:
9
10buildPythonPackage rec {
11 pname = "xmldiff";
12 version = "2.4";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-Bb6iDOHyyWeGg7zODDupmB+H2StwnRkOAYvL8Efsz2M=";
17 };
18
19 propagatedBuildInputs = [ lxml setuptools six ];
20
21 checkInputs = [ pytestCheckHook ];
22
23 meta = with lib; {
24 description = "Creates diffs of XML files";
25 homepage = "https://github.com/Shoobx/xmldiff";
26 changelog = "https://github.com/Shoobx/xmldiff/blob/master/CHANGES.rst";
27 license = licenses.mit;
28 maintainers = with maintainers; [ sfrijters ];
29 };
30}