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 bbecf82f65b8..8b4b7a891309 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 a470c5d9cb20..6aaa368d228e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -776,8 +776,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 { };