mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
python3Packages.a2wsgi: fix build
(cherry picked from commit 12d536207f
)
This commit is contained in:
parent
e6119586a0
commit
38409c6245
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user