diff --git a/pkgs/development/python-modules/glyphsets/default.nix b/pkgs/development/python-modules/glyphsets/default.nix index e95a1a3ecb83..8643b21c0416 100644 --- a/pkgs/development/python-modules/glyphsets/default.nix +++ b/pkgs/development/python-modules/glyphsets/default.nix @@ -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" ];