From 5c54aeaa1b1e88b3fc67bf04b90710dc2601bb2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 12 Jul 2026 12:02:09 -0700 Subject: [PATCH] python3Packages.fontfeatures: update dependencies --- .../python-modules/fontfeatures/default.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/fontfeatures/default.nix b/pkgs/development/python-modules/fontfeatures/default.nix index 450380bb166d..d67e7adcbd18 100644 --- a/pkgs/development/python-modules/fontfeatures/default.nix +++ b/pkgs/development/python-modules/fontfeatures/default.nix @@ -1,11 +1,9 @@ { lib, + babelfont, buildPythonPackage, fetchPypi, - beziers, fonttools, - fs, - glyphtools, lxml, pytestCheckHook, youseedee, @@ -25,12 +23,13 @@ buildPythonPackage rec { hash = "sha256-3PpUgaTXyFcthJrFaQqeUOvDYYFosJeXuRFnFrwp0R8="; }; - propagatedBuildInputs = [ - beziers + dependencies = [ fonttools - fs - glyphtools lxml + ]; + + optional-dependencies.shaper = [ + babelfont youseedee ];