manim-slides: 5.1.9 -> 5.4.0 (#375775)

Changed files
+7 -7
pkgs
development
python-modules
manim-slides
+7 -7
pkgs/development/python-modules/manim-slides/default.nix
···
ffmpeg,
av,
+
beautifulsoup4,
click,
click-default-group,
jinja2,
lxml,
numpy,
-
opencv-python,
pillow,
pydantic,
pydantic-extra-types,
···
}:
buildPythonPackage rec {
pname = "manim-slides";
-
version = "5.1.9";
+
version = "5.4.0";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "jeertmans";
repo = "manim-slides";
tag = "v${version}";
-
hash = "sha256-M500u7x0jQqcqCd3RbS0CpI1nuwNs9URFlHPeGkiT7E=";
+
hash = "sha256-9BPBjTepb1CdCEk1j471NhndLG5Ai1P81VUV6msQPus=";
};
build-system = [
···
dependencies =
[
av
+
beautifulsoup4
click
click-default-group
jinja2
lxml
numpy
-
opencv-python
pillow
pydantic
pydantic-extra-types
···
pythonImportsCheck = [ "manim_slides" ];
-
meta = with lib; {
+
meta = {
changelog = "https://github.com/jeertmans/manim-slides/blob/${src.rev}/CHANGELOG.md";
description = "Tool for live presentations using manim";
homepage = "https://github.com/jeertmans/manim-slides";
-
license = licenses.mit;
+
license = lib.licenses.mit;
mainProgram = "manim-slides";
-
maintainers = with maintainers; [ soispha ];
+
maintainers = with lib.maintainers; [ soispha ];
};
}