1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #317200 from natsukium/htmllaundry/remove

python311Packages.htmllaundry: remove
This commit is contained in:
Aleksana 2024-06-21 23:51:43 +08:00 committed by GitHub
commit dcf0ffde39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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

@ -226,6 +226,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

@ -5530,8 +5530,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 { };