about summary refs log tree commit diff
path: root/pkgs/tools/text/xml
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-10-04 21:24:20 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-04 21:56:31 -0300
commit841d18380631b72e864dd4e6251f49b7ced6c4c3 (patch)
tree6bee7f62a49e26104da39c035f9aab4ace9509f7 /pkgs/tools/text/xml
parent9f20229c6cf12577bb428fb025b06138f0808384 (diff)
xmldiff: 2.4 -> 2.6.3
Diffstat (limited to 'pkgs/tools/text/xml')
-rw-r--r--pkgs/tools/text/xml/xmldiff/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/tools/text/xml/xmldiff/default.nix b/pkgs/tools/text/xml/xmldiff/default.nix
deleted file mode 100644
index d9dbd70b6483c..0000000000000
--- a/pkgs/tools/text/xml/xmldiff/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib
-, buildPythonApplication
-, fetchFromGitHub
-, lxml
-, setuptools
-, six
-}:
-
-buildPythonApplication rec {
-  pname = "xmldiff";
-  version = "2.4";
-
-  src = fetchFromGitHub {
-    owner = "Shoobx";
-    repo = pname;
-    rev = version;
-    hash = "sha256-xqudHYfwOce2C0pcFzId0JDIIC6R5bllmVKsH+CvTdE=";
-  };
-
-  propagatedBuildInputs = [
-    lxml
-    setuptools
-    six
-  ];
-
-  meta = with lib; {
-    homepage = "https://xmldiff.readthedocs.io/en/stable/";
-    description = "A library and command line utility for diffing xml";
-    longDescription = ''
-      xmldiff is a library and a command-line utility for making diffs out of
-      XML. This may seem like something that doesn't need a dedicated utility,
-      but change detection in hierarchical data is very different from change
-      detection in flat data. XML type formats are also not only used for
-      computer readable data, it is also often used as a format for hierarchical
-      data that can be rendered into human readable formats. A traditional diff
-      on such a format would tell you line by line the differences, but this
-      would not be be readable by a human. xmldiff provides tools to make human
-      readable diffs in those situations.
-    '';
-    license = licenses.mit;
-    maintainers = with maintainers; [ AndersonTorres anpryl ];
-  };
-}