Files
nixpkgs/pkgs/development/python-modules/a2wsgi/default.nix
Martin Weinelt b39dd739b4 python3Packages.a2wsgi: 1.10.8 -> 1.10.10
This commit was automatically generated using update-python-libraries.
2025-08-09 18:57:51 +02:00

45 lines
769 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
baize,
httpx,
pdm-backend,
pytest-asyncio,
pytestCheckHook,
starlette,
}:
buildPythonPackage rec {
pname = "a2wsgi";
version = "1.10.10";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-pbz/tSCBujnfDV6aiE/G+BnZLjpCOJNDunfL+An+H0U=";
};
build-system = [ pdm-backend ];
dependencies = [
starlette
baize
];
nativeCheckInputs = [
baize
httpx
pytest-asyncio
pytestCheckHook
starlette
];
meta = {
description = "Convert WSGI app to ASGI app or ASGI app to WSGI app";
homepage = "https://github.com/abersheeran/a2wsgi";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}