python3Packages.aiohttp-asgi-connector: init at 1.1.2

An AIOHTTP ClientSession connector for directly interacting
with ASGI applications

https://github.com/thearchitector/aiohttp-asgi-connector
This commit is contained in:
Fabian Affolter
2026-03-07 00:21:03 +01:00
parent db952ffcd6
commit b41cf4b1d8
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
aiohttp,
buildPythonPackage,
fastapi,
fetchFromGitHub,
pdm-backend,
pytest-asyncio,
pytestCheckHook,
python-multipart,
}:
buildPythonPackage (finalAttrs: {
pname = "aiohttp-asgi-connector";
version = "1.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "thearchitector";
repo = "aiohttp-asgi-connector";
tag = "v${finalAttrs.version}";
hash = "sha256-kvHsn8avq0Fi4ceg3ispFoQp0HJKzBv4tgley7XWMrY=";
};
build-system = [ pdm-backend ];
dependencies = [ aiohttp ];
nativeCheckInputs = [
fastapi
pytest-asyncio
pytestCheckHook
python-multipart
];
pythonImportsCheck = [ "aiohttp_asgi_connector" ];
meta = {
description = "An AIOHTTP ClientSession connector for directly interacting with ASGI applications";
homepage = "https://github.com/thearchitector/aiohttp-asgi-connector";
changelog = "https://github.com/thearchitector/aiohttp-asgi-connector/releases/tag/v${finalAttrs.src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
})
+2
View File
@@ -318,6 +318,8 @@ self: super: with self; {
aiohttp-apispec = callPackage ../development/python-modules/aiohttp-apispec { };
aiohttp-asgi-connector = callPackage ../development/python-modules/aiohttp-asgi-connector { };
aiohttp-asyncmdnsresolver = callPackage ../development/python-modules/aiohttp-asyncmdnsresolver { };
aiohttp-basicauth = callPackage ../development/python-modules/aiohttp-basicauth { };