python313Packages.aiosseclient: init at 0.1.3 (#386076)

This commit is contained in:
Fabian Affolter
2025-03-03 15:58:38 +01:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
}:
buildPythonPackage rec {
pname = "aiosseclient";
version = "0.1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "ebraminio";
repo = "aiosseclient";
rev = version;
hash = "sha256-T97HmO53w1zNpASPU+LRcnqtnQVqPWtlOXycpBw4WmY=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# Test requires network access
doCheck = false;
pythonImportsCheck = [ "aiosseclient" ];
meta = {
description = "Asynchronous Server Side Events (SSE) client";
homepage = "https://github.com/ebraminio/aiosseclient";
changelog = "https://github.com/ebraminio/aiosseclient/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -427,6 +427,8 @@ self: super: with self; {
aiosql = callPackage ../development/python-modules/aiosql { };
aiosseclient = callPackage ../development/python-modules/aiosseclient { };
aiosenz = callPackage ../development/python-modules/aiosenz { };
aioserial = callPackage ../development/python-modules/aioserial { };