Unverified Commit 6b2cda37 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

python3Packages.tikzplotlib: drop (#460839)

parents 94a2c2ed fa227cfd
Loading
Loading
Loading
Loading
+0 −45
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };