Merge pull request #287799 from ocfox/fix-lektor

lektor: fix build
This commit is contained in:
Weijia Wang 2024-02-10 20:19:21 +01:00 committed by GitHub
commit 4d23f906c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 = ''