depot/third_party/nixpkgs/pkgs/development/python-modules/ufo2ft/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

73 lines
1.5 KiB
Nix

{
lib,
booleanoperations,
buildPythonPackage,
cffsubr,
compreffor,
cu2qu,
defcon,
fetchPypi,
fontmath,
fonttools,
pytestCheckHook,
pythonOlder,
setuptools-scm,
skia-pathops,
ufolib2,
}:
buildPythonPackage rec {
pname = "ufo2ft";
version = "3.2.5";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-PUPk92wugtIZWXP8vq8bJNxqTDhDENKdNhW1kNEcL3E=";
};
nativeBuildInputs = [
setuptools-scm
];
pythonRelaxDeps = [ "cffsubr" ];
propagatedBuildInputs = [
cu2qu
fontmath
fonttools
defcon
compreffor
booleanoperations
cffsubr
ufolib2
skia-pathops
] ++ fonttools.optional-dependencies.lxml ++ fonttools.optional-dependencies.ufo;
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# Do not depend on skia.
"test_removeOverlaps_CFF_pathops"
"test_removeOverlaps_pathops"
"test_custom_filters_as_argument"
"test_custom_filters_as_argument"
# Some integration tests fail
"test_compileVariableCFF2"
"test_compileVariableTTF"
"test_drop_glyph_names_variable"
"test_drop_glyph_names_variable"
];
pythonImportsCheck = [ "ufo2ft" ];
meta = with lib; {
description = "Bridge from UFOs to FontTools objects";
homepage = "https://github.com/googlefonts/ufo2ft";
changelog = "https://github.com/googlefonts/ufo2ft/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ ];
};
}