From c4aad5c435ada503eac982a6e1238b19de49c222 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 14 Jan 2026 00:35:08 +0100 Subject: [PATCH] python313Packages.ansiconv: drop --- .../python-modules/ansiconv/default.nix | 28 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 -- 3 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 pkgs/development/python-modules/ansiconv/default.nix diff --git a/pkgs/development/python-modules/ansiconv/default.nix b/pkgs/development/python-modules/ansiconv/default.nix deleted file mode 100644 index 8944a73b01de..000000000000 --- a/pkgs/development/python-modules/ansiconv/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - pytest, -}: - -buildPythonPackage rec { - pname = "ansiconv"; - version = "1.0.0"; - format = "setuptools"; - - src = fetchFromGitHub { - owner = "ansible"; - repo = "ansiconv"; - rev = "v${version}"; - sha256 = "0ljfpl8x069arzginvpi1v6hlaq4x2qpjqj01qds2ylz33scq8r4"; - }; - - nativeCheckInputs = [ pytest ]; - - meta = { - description = "Module for converting ANSI coded text and converts it to either plain text or HTML"; - homepage = "https://github.com/ansible/ansiconv"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ psyanticy ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 0378e92e1de0..59a223e5a7f8 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -62,6 +62,7 @@ mapAliases { amazon-kclpy = throw "amazon-kclpy has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03 amazon_kclpy = throw "'amazon_kclpy' has been renamed to/replaced by 'amazon-kclpy'"; # Converted to throw 2025-10-29 amqplib = throw "amqplib has been removed as it was unmaintained upstream"; # Added 2025-11-22 + ansiconv = throw "ansiconv has been removed because it was archived upstream"; # Added 2026-01-14 ansiwrap = throw "ansiwrap has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03 apkit = throw "apkit was removed because it is unmaintained upstream and different from apkit on PyPI"; # added 2025-09-13 APScheduler = throw "'APScheduler' has been renamed to/replaced by 'apscheduler'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a2bbbc404c6b..a6aeca0e1cde 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -774,8 +774,6 @@ self: super: with self; { ansicolors = callPackage ../development/python-modules/ansicolors { }; - ansiconv = callPackage ../development/python-modules/ansiconv { }; - ansimarkup = callPackage ../development/python-modules/ansimarkup { }; ansitable = callPackage ../development/python-modules/ansitable { };