python313Packages.asyncpysupla: init at 0.0.5

This commit is contained in:
Jamie Magee 2025-07-25 23:07:07 -07:00
parent 0f8bab2331
commit d3a4f9ba08
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "asyncpysupla";
version = "0.0.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-sRw4qAkHPIIc27FtxIe2vOvSK9PPBJYOZzDLgGYapDc=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# Tests require API credentials and network access
doCheck = false;
pythonImportsCheck = [ "asyncpysupla" ];
meta = {
description = "Simple Supla's OpenAPI async wrapper";
homepage = "https://github.com/mwegrzynek/asyncpysupla";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
}

View File

@ -1047,6 +1047,8 @@ self: super: with self; {
asyncprawcore = callPackage ../development/python-modules/asyncprawcore { };
asyncpysupla = callPackage ../development/python-modules/asyncpysupla { };
asyncserial = callPackage ../development/python-modules/asyncserial { };
asyncsleepiq = callPackage ../development/python-modules/asyncsleepiq { };