diff options
author | Weijia Wang | 2024-11-14 20:46:27 +0100 |
---|---|---|
committer | GitHub | 2024-11-14 20:46:27 +0100 |
commit | 7986c40ab073501af3cf6ae710d1aa7eb9744bbf (patch) | |
tree | 057e104907f4de4e5600c520d0ac8321e4ee0b47 | |
parent | 7c8e317bc1d7485564ae434f048416cca4057ad4 (diff) | |
parent | 2f8cde9591cb7635584f7d88ece1125353299309 (diff) |
[Backport release-24.11] python3Packages.essentials-openapi: fix build (#355976)
-rw-r--r-- | pkgs/development/python-modules/essentials-openapi/default.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/essentials-openapi/default.nix b/pkgs/development/python-modules/essentials-openapi/default.nix index b6cc24262073..89eb9eff42e6 100644 --- a/pkgs/development/python-modules/essentials-openapi/default.nix +++ b/pkgs/development/python-modules/essentials-openapi/default.nix @@ -53,14 +53,18 @@ buildPythonPackage rec { ]; }; + pythonRelaxDeps = [ + "markupsafe" + ]; + pythonImportsCheck = [ "openapidocs" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Neoteroi/essentials-openapi"; description = "Functions to handle OpenAPI Documentation"; changelog = "https://github.com/Neoteroi/essentials-openapi/releases/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero zimbatm ]; |