16 buildPythonPackage rec {
21 disabled = pythonOlder "3.8";
23 src = fetchFromGitHub {
24 owner = "ManimCommunity";
26 rev = "refs/tags/v${version}";
27 hash = "sha256-nN+XOnki8fG7URMy2Fhs2X+yNi8Y7wDo53d61xaRa3w=";
30 nativeBuildInputs = [ pkg-config ];
32 buildInputs = [ pango ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ AppKit ];
48 pythonImportsCheck = [ "manimpango" ];
51 description = "Binding for Pango";
52 homepage = "https://github.com/ManimCommunity/ManimPango";
53 changelog = "https://github.com/ManimCommunity/ManimPango/releases/tag/v${version}";
54 license = licenses.mit;
55 maintainers = with maintainers; [ emilytrau ];