diff --git a/pkgs/development/python-modules/textwrap3/default.nix b/pkgs/development/python-modules/textwrap3/default.nix deleted file mode 100644 index d03aa915059d..000000000000 --- a/pkgs/development/python-modules/textwrap3/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "textwrap3"; - version = "0.9.2"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - extension = "zip"; - sha256 = "5008eeebdb236f6303dcd68f18b856d355f6197511d952ba74bc75e40e0c3414"; - }; - - nativeCheckInputs = [ pytestCheckHook ]; - - meta = { - description = "Textwrap from Python 3.6 backport plus a few tweaks"; - homepage = "https://github.com/jonathaneunice/textwrap3"; - license = lib.licenses.psfl; - maintainers = [ ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 1c705127d6ce..ac7b229aa309 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -667,6 +667,7 @@ mapAliases { tensorflow-tensorboard = throw "'tensorflow-tensorboard' has been renamed to/replaced by 'tensorboard'"; # Converted to throw 2025-10-29 tensorflow-tensorboard_2 = throw "'tensorflow-tensorboard_2' has been renamed to/replaced by 'tensorflow-tensorboard'"; # Converted to throw 2025-10-29 testing-postgresql = throw "testing-postgresql has been removed, since it is unmaintained since 2017"; # added 2025-05-25 + textwrap3 = throw "'textwrap3' has been removed, since it had no consumers in nixpkgs"; # Added 2026-07-24 tgcrypto = throw "'tgcrypto' has been removed as it was archived upstream"; # Added 2026-03-21 Theano = throw "'Theano' has been renamed to/replaced by 'theano'"; # Converted to throw 2025-10-29 TheanoWithCuda = throw "'TheanoWithCuda' has been renamed to/replaced by 'theanoWithCuda'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 774843645a69..fe4512be9f7e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20215,8 +20215,6 @@ self: super: with self; { textualeffects = callPackage ../development/python-modules/textualeffects { }; - textwrap3 = callPackage ../development/python-modules/textwrap3 { }; - textx = callPackage ../development/python-modules/textx { }; tf-keras = callPackage ../development/python-modules/tf-keras { };