Files
nixpkgs/pkgs/development/python-modules/manimpango/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

61 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pkg-config,
setuptools,
pango,
cython,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "manimpango";
version = "0.6.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ManimCommunity";
repo = "manimpango";
tag = "v${version}";
hash = "sha256-8eQmhVsW440/zxOwjngnPTGT7iFbdSvBV7tnI332piE=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "Cython>=3.0.2,<3.1" Cython
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ pango ];
build-system = [
setuptools
cython
];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
preCheck = ''
rm -r manimpango
'';
pythonImportsCheck = [ "manimpango" ];
meta = {
description = "Binding for Pango";
homepage = "https://github.com/ManimCommunity/ManimPango";
changelog = "https://github.com/ManimCommunity/ManimPango/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ emilytrau ];
};
}