From 5df8b10a196b1c75adcc079656aae4d9c8cfc407 Mon Sep 17 00:00:00 2001 From: Richard Davis Date: Sun, 12 May 2024 23:23:25 -0400 Subject: [PATCH] python311Packages.abjad: add typing-extensions package dependency Build failed with ModuleNotFoundError, fixing. --- pkgs/development/python-modules/abjad/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/abjad/default.nix b/pkgs/development/python-modules/abjad/default.nix index 9ff530afdf74..800fcd5182fc 100644 --- a/pkgs/development/python-modules/abjad/default.nix +++ b/pkgs/development/python-modules/abjad/default.nix @@ -8,6 +8,7 @@ pythonOlder, pytestCheckHook, lilypond, + typing-extensions, }: buildPythonPackage rec { @@ -26,6 +27,7 @@ buildPythonPackage rec { ply roman uqbar + typing-extensions ]; buildInputs = [ lilypond ];