python3Packages.glyphsets: 1.0.0 -> 1.1.0

https://github.com/googlefonts/glyphsets/blob/v1.1.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2025-01-27 10:55:29 +01:00
parent d18daa94ab
commit d1268945a6
@@ -12,28 +12,25 @@
requests,
setuptools-scm,
setuptools,
tabulate,
unicodedata2,
youseedee,
}:
buildPythonPackage rec {
pname = "glyphsets";
version = "1.0.0";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-fa+W1IGIZcn1P1xNKm1Yb/TOuf4QdDVnIvlDkOLOcLY=";
hash = "sha256-jza6VQ3PZAQPku2hyo0KeO59r64Q9TpqLCI0dIX/URU=";
};
env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python";
postPatch = ''
substituteInPlace setup.py \
--replace-fail "setuptools_scm>=8.0.4,<8.1" "setuptools_scm"
'';
build-system = [
setuptools
setuptools-scm
@@ -46,7 +43,9 @@ buildPythonPackage rec {
glyphslib
pyyaml
requests
tabulate
unicodedata2
youseedee
];
nativeCheckInputs = [ pytestCheckHook ];
@@ -58,7 +57,7 @@ buildPythonPackage rec {
disabledTests = [
# This "test" just tries to connect to PyPI and look for newer releases. Not needed.
"test_dependencies"
# AssertionError
# 616 instead of 617 glyphs in a glyphset
"test_definitions"
];