From 1fd3f0542efbcb8332bbd9cc595a8e431af871ea Mon Sep 17 00:00:00 2001 From: ocfox Date: Sat, 10 Feb 2024 23:07:22 +0800 Subject: [PATCH] lektor: fix build --- pkgs/tools/misc/lektor/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/lektor/default.nix b/pkgs/tools/misc/lektor/default.nix index 1b20b4355d8e..aef55ffb9b1f 100644 --- a/pkgs/tools/misc/lektor/default.nix +++ b/pkgs/tools/misc/lektor/default.nix @@ -20,7 +20,8 @@ let }); }; }; -in python.pkgs.buildPythonApplication rec { +in +python.pkgs.buildPythonApplication rec { pname = "lektor"; version = "3.4.0b8"; format = "pyproject"; @@ -70,6 +71,11 @@ in python.pkgs.buildPythonApplication rec { pytest-click pytest-mock pytestCheckHook + pythonRelaxDepsHook + ]; + + pythonRelaxDeps = [ + "werkzeug" ]; postInstall = ''