Files
nixpkgs/pkgs/development/python-modules/gflanguages/default.nix
2026-09-02 20:10:51 +02:00

66 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
protobuf,
pytestCheckHook,
regex,
setuptools,
setuptools-scm,
uharfbuzz,
youseedee,
gfmetadata,
}:
buildPythonPackage (finalAttrs: {
pname = "gflanguages";
version = "0.7.11";
pyproject = true;
src = fetchFromGitHub {
owner = "googlefonts";
repo = "lang";
tag = "v${finalAttrs.version}";
hash = "sha256-skybvMeSP+F3Bz3PJEB7ZIEVhLdwBc8+VemDcC+1FZc=";
};
# Relax the dependency on protobuf 3. Other packages in the Google Fonts
# ecosystem have begun upgrading from protobuf 3 to protobuf 4,
# so we need to use protobuf 4 here as well to avoid a conflict
# in the closure of fontbakery. It seems to be compatible enough.
pythonRelaxDeps = [ "protobuf" ];
env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python";
build-system = [
setuptools
setuptools-scm
];
dependencies = [
protobuf
regex
gfmetadata
];
nativeCheckInputs = [
pytestCheckHook
regex
uharfbuzz
youseedee
];
pythonImportsCheck = [ "gflanguages" ];
meta = {
description = "Python library for Google Fonts language metadata";
homepage = "https://github.com/googlefonts/lang";
changelog = "https://github.com/googlefonts/lang/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
danc86
jopejoe1
];
};
})