From 3b02dd73dd2cb2661e7728169ae75937b5a2fd96 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 24 Apr 2024 15:06:41 +0200 Subject: [PATCH] python312Packages.faster-whisper: relax tokenizers constraint --- pkgs/development/python-modules/faster-whisper/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/faster-whisper/default.nix b/pkgs/development/python-modules/faster-whisper/default.nix index 847afc47a352..2fe0b785cea6 100644 --- a/pkgs/development/python-modules/faster-whisper/default.nix +++ b/pkgs/development/python-modules/faster-whisper/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchFromGitHub +, pythonRelaxDepsHook # build-system , setuptools @@ -30,6 +31,11 @@ buildPythonPackage rec { build-system = [ setuptools + pythonRelaxDepsHook + ]; + + pythonRelaxDeps = [ + "tokenizers" ]; dependencies = [