python3Packages.a2wsgi: fix build

(cherry picked from commit 12d536207f)
This commit is contained in:
wxt 2024-11-13 20:21:13 +08:00 committed by github-actions[bot]
parent e6119586a0
commit 38409c6245

View File

@ -7,6 +7,8 @@
pdm-backend,
pytest-asyncio,
pytestCheckHook,
starlette,
baize,
}:
buildPythonPackage rec {
@ -28,10 +30,15 @@ buildPythonPackage rec {
pytestCheckHook
];
meta = with lib; {
dependencies = [
starlette
baize
];
meta = {
description = "Convert WSGI app to ASGI app or ASGI app to WSGI app";
homepage = "https://github.com/abersheeran/a2wsgi";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}