Unverified Commit 6b50b498 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python313Packages.asyncpysupla: init at 0.0.5 (#428528)

parents ed3d6944 fd6567c8
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -5657,7 +5657,8 @@
      ];
    "supla" =
      ps: with ps; [
      ]; # missing inputs: asyncpysupla
        asyncpysupla
      ];
    "surepetcare" =
      ps: with ps; [
        surepy
+2 −0
Original line number Diff line number Diff line
@@ -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 { };