mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
python3Packages.bablefont: fix building
This commit is contained in:
parent
e8fd0cf3f6
commit
1c6d14cc72
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user