python313Packages.aiohttp-sse: init at 2.2.0 (#377395)

This commit is contained in:
Robert Schütz
2025-01-30 11:00:26 -08:00
committed by GitHub
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
pytest-aiohttp,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "aiohttp-sse";
version = "2.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "aio-libs";
repo = "aiohttp-sse";
tag = "v${version}";
hash = "sha256-iCjWuECUQukCtlQPjztEwawqSzd3LvvWRGXnhZem22w=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
];
pythonImportsCheck = [ "aiohttp_sse" ];
nativeCheckInputs = [
pytest-aiohttp
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
__darwinAllowLocalNetworking = true;
meta = {
changelog = "https://github.com/aio-libs/aiohttp-sse/blob/${src.tag}/CHANGES.rst";
description = "Server-sent events support for aiohttp";
homepage = "https://github.com/aio-libs/aiohttp-sse";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -283,6 +283,8 @@ self: super: with self; {
aiohttp-socks = callPackage ../development/python-modules/aiohttp-socks { };
aiohttp-sse = callPackage ../development/python-modules/aiohttp-sse { };
aiohttp-sse-client2 = callPackage ../development/python-modules/aiohttp-sse-client2 { };
aiohttp-swagger = callPackage ../development/python-modules/aiohttp-swagger { };