python3Packages.htmltreediff: remove

Not used anywhere and also not updated for a long time.
This commit is contained in:
Maximilian Bosch 2021-01-01 19:48:59 +01:00
parent e7d1be840c
commit 0d3f7b6f4a
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
2 changed files with 0 additions and 28 deletions

View File

@ -1,26 +0,0 @@
{ buildPythonPackage, fetchFromGitHub, isPy3k, lxml, html5lib, nose, stdenv }:
buildPythonPackage rec {
version = "0.1.2";
pname = "htmltreediff";
disabled = isPy3k;
src = fetchFromGitHub {
owner = "christian-oudard";
repo = pname;
rev = "v${version}";
sha256 = "16mqp2jyznrw1mgd3qzybq28h2k5wz7vmmz1m6xpgscazyjhvvd1";
};
propagatedBuildInputs = [ lxml html5lib ];
checkInputs = [ nose ];
meta = with stdenv.lib; {
description = " Structure-aware diff for html and xml documents";
homepage = "https://github.com/christian-oudard/htmltreediff";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ ];
};
}

View File

@ -2826,8 +2826,6 @@ in {
html-sanitizer = callPackage ../development/python-modules/html-sanitizer { };
htmltreediff = callPackage ../development/python-modules/htmltreediff { };
HTSeq = callPackage ../development/python-modules/HTSeq { };
httmock = callPackage ../development/python-modules/httmock { };