python311Packages.htmllaundry: remove

htmllaundry has been removed because it is abandoned
https://github.com/wichert/htmllaundry
This commit is contained in:
natsukium 2024-06-04 23:03:19 +09:00
parent 6bb5304288
commit 0fe4589526
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
3 changed files with 1 additions and 37 deletions

View File

@ -1,35 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
nose,
six,
lxml,
}:
buildPythonPackage rec {
pname = "htmllaundry";
version = "2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "9124f067d3c06ef2613e2cc246b2fde2299802280a8b0e60dc504137085f0334";
};
buildInputs = [ nose ];
propagatedBuildInputs = [
six
lxml
];
# some tests fail, probably because of changes in lxml
# not relevant for me, if releavnt for you, fix it...
doCheck = false;
meta = with lib; {
description = "Simple HTML cleanup utilities";
license = licenses.bsd3;
homepage = "https://pypi.org/project/htmllaundry/";
};
}

View File

@ -222,6 +222,7 @@ mapAliases ({
hglib = python-hglib; # added 2023-10-13
homeassistant-bring-api = bring-api; # added 2024-04-11
homeassistant-pyozw = throw "homeassistant-pyozw has been removed, as it was packaged for home-assistant which has removed it as a dependency."; # added 2024-01-05
htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04
HTSeq = htseq; # added 2023-02-19
hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29
ihatemoney = throw "ihatemoney was removed because it is no longer maintained downstream"; # added 2023-04-08

View File

@ -5491,8 +5491,6 @@ self: super: with self; {
htmldate = callPackage ../development/python-modules/htmldate { };
htmllaundry = callPackage ../development/python-modules/htmllaundry { };
htmllistparse = callPackage ../development/python-modules/htmllistparse { };
htmlmin = callPackage ../development/python-modules/htmlmin { };