python312Packages.gflanguages: 0.6.2 -> 0.6.5

Changelog: https://github.com/googlefonts/lang/releases/tag/v0.6.5
This commit is contained in:
Fabian Affolter
2024-10-18 22:41:22 +02:00
parent 81ee4faf93
commit 43d5c63843
@@ -5,6 +5,7 @@
protobuf,
pytestCheckHook,
pythonOlder,
regex,
setuptools,
setuptools-scm,
uharfbuzz,
@@ -13,14 +14,14 @@
buildPythonPackage rec {
pname = "gflanguages";
version = "0.6.2";
version = "0.6.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-v93mXDwHT/8Tau78ApLUR+dQCpL9jmRQp0BT5y/sfq4=";
hash = "sha256-wMhRVWdjKiEfzswnAWqKfzHrpJj0U4q8tzDBGshNryo=";
};
# Relax the dependency on protobuf 3. Other packages in the Google Fonts
@@ -36,7 +37,10 @@ buildPythonPackage rec {
setuptools-scm
];
dependencies = [ protobuf ];
dependencies = [
protobuf
regex
];
nativeCheckInputs = [
pytestCheckHook
@@ -44,6 +48,14 @@ buildPythonPackage rec {
youseedee
];
pythonImportsCheck = [ "gflanguages" ];
disabledTests = [
# AssertionError
"test_exemplars_are_in_script"
"test_sample_texts_are_in_script"
];
meta = with lib; {
description = "Python library for Google Fonts language metadata";
homepage = "https://github.com/googlefonts/lang";