python3Packages.bablefont: fix building

This commit is contained in:
jopejoe1 2024-07-26 07:54:30 +02:00
parent e8fd0cf3f6
commit 1c6d14cc72

View File

@ -13,6 +13,7 @@
setuptools,
setuptools-scm,
ufolib2,
vfblib,
}:
buildPythonPackage rec {
@ -41,6 +42,7 @@ buildPythonPackage rec {
openstep-plist
orjson
ufolib2
vfblib
];
nativeCheckInputs = [
@ -48,6 +50,15 @@ buildPythonPackage rec {
pytestCheckHook
];
# Want non exsiting test data
disabledTests = [
"test_rename"
"test_rename_nested"
"test_rename_contextual"
];
disabledTestPaths = [ "tests/test_glyphs3_roundtrip.py" ];
meta = with lib; {
description = "Python library to load, examine, and save fonts in a variety of formats";
mainProgram = "babelfont";