Commit d3a4f9ba authored by Jamie Magee's avatar Jamie Magee
Browse files

python313Packages.asyncpysupla: init at 0.0.5

parent 0f8bab23
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 −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 { };