diff --git a/pkgs/development/python-modules/tikzplotlib/default.nix b/pkgs/development/python-modules/tikzplotlib/default.nix deleted file mode 100644 index 7f7ceb4f9e21..000000000000 --- a/pkgs/development/python-modules/tikzplotlib/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - matplotlib, - numpy, - pillow, - webcolors, - flit-core, - pytestCheckHook, - pandas, -}: - -buildPythonPackage rec { - pname = "tikzplotlib"; - version = "0.10.1"; - format = "pyproject"; - - src = fetchFromGitHub { - owner = "nschloe"; - repo = "tikzplotlib"; - rev = "v${version}"; - hash = "sha256-PLExHhEnxkEiXsE0rqvpNWwVZ+YoaDa2BTx8LktdHl0="; - }; - - propagatedBuildInputs = [ - matplotlib - numpy - pillow - webcolors - flit-core - ]; - - nativeCheckInputs = [ - pytestCheckHook - pandas - ]; - - meta = with lib; { - description = "Save matplotlib figures as TikZ/PGFplots for smooth integration into LaTeX"; - homepage = "https://github.com/nschloe/tikzplotlib"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index e230db59992e..f13fab62c9ab 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -457,6 +457,7 @@ mapAliases { 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 TheanoWithoutCuda = throw "'TheanoWithoutCuda' has been renamed to/replaced by 'theanoWithoutCuda'"; # Converted to throw 2025-10-29 + tikzplotlib = throw "tikzplotlib was removed because it is incompatible with recent versions of matplotlib and webcolors"; # added 2025-11-11 torrent_parser = throw "'torrent_parser' has been renamed to/replaced by 'torrent-parser'"; # Converted to throw 2025-10-29 treeo = throw "treeo has been removed because it has been marked as broken since 2023."; # Added 2025-10-11 treex = throw "treex has been removed because it has transitively been marked as broken since 2023."; # Added 2025-10-11 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 42841471400b..2ede101dea58 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18563,8 +18563,6 @@ self: super: with self; { tiktoken = callPackage ../development/python-modules/tiktoken { }; - tikzplotlib = callPackage ../development/python-modules/tikzplotlib { }; - tiledb = callPackage ../development/python-modules/tiledb { inherit (pkgs) tiledb; }; tilequant = callPackage ../development/python-modules/tilequant { };