python313Packages.inlinestyler: remove (#432259)

This commit is contained in:
Fabian Affolter
2025-08-10 23:45:38 +02:00
committed by GitHub
3 changed files with 1 additions and 64 deletions
@@ -1,62 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
# build system
setuptools,
# dependencies
cssutils,
lxml,
requests,
# tests
ipdb,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "inlinestyler";
version = "0.2.5";
pyproject = true;
src = fetchFromGitHub {
owner = "dlanger";
repo = "inlinestyler";
tag = version;
hash = "sha256-9TKXqW+5SiiNXnHW2lOVh3zhFhodM7a1UB2yXsEuX3I=";
};
patches = [
# https://github.com/dlanger/inlinestyler/pull/33
(fetchpatch2 {
url = "https://github.com/dlanger/inlinestyler/commit/29fc1c256fd8f37c3e2fda34c975f0bcfe72cf9a.patch";
hash = "sha256-35GWrfvXgpy1KAZ/0pdxsiKNTpDku6/ZX3KWfRUGQmc=";
})
];
build-system = [ setuptools ];
dependencies = [
cssutils
lxml
requests
];
pythonImportsCheck = [ "inlinestyler" ];
nativeCheckInputs = [
ipdb
pytestCheckHook
];
meta = with lib; {
description = "Simple CSS inliner for generating HTML email messages";
homepage = "https://github.com/dlanger/inlinestyler";
changelog = "https://github.com/dlanger/inlinestyler/blob/${src.rev}/CHANGELOG";
license = licenses.bsd3;
maintainers = [ ];
};
}
+1
View File
@@ -349,6 +349,7 @@ mapAliases ({
ipdbplugin = throw "ipdbplugin has been removed because it has no longer maintained for 6 years"; # added 2024-05-21
ipython_genutils = ipython-genutils; # added 2023-10-12
influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10
inlinestyler = throw "inlinestyler has been removed because it is no longer maintained"; # added 2025-08-09
itanium_demangler = itanium-demangler; # added 2022-10-17
jaeger-client = throw "jaeger-client was removed because it is deprecated upstream. OpenTelemetry is recommended instead."; # Added 2024-12-09
jaraco_classes = jaraco-classes; # added 2023-07-14
-2
View File
@@ -7023,8 +7023,6 @@ self: super: with self; {
inline-snapshot = callPackage ../development/python-modules/inline-snapshot { };
inlinestyler = callPackage ../development/python-modules/inlinestyler { };
inotify = callPackage ../development/python-modules/inotify { };
inotify-simple = callPackage ../development/python-modules/inotify-simple { };