manim: Fix missing package in optdepends
Optional dependency for LaTeX support in manim is provided by texlive-latex-extra. The earlier listed package, texlive-scheme-medium, is now absent. Replace former with latter.
You might need to cherry-pick this upstream commit to avoid the build error: https://github.com/ManimCommunity/manim/commit/44f78f1dfdd7498542869fc06bb39619f2b2d57b
The patch didn't apply on the tarball. Maybe, you just need the following part of it?
diff --git a/pyproject.toml b/pyproject.toml
index 8c32dcd03c..4c817cb183 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -27,7 +27,7 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
-click = ">=7.2<=9.0"
+click = ">=7.2,<=9.0"
click-default-group = "^1.2.2"
colour = "^0.1.5"
numpy = "^1.19"
@mmuetzel Done! This can be merged?
I'm just a contributor like you that wanted to help getting your PR in shape. You'll have to wait for a maintainer to pick up your PR.