Unverified Commit 18f3e800 authored by Benedikt Broich's avatar Benedikt Broich
Browse files

python3Packages.alphaessopenapi: init at 0.0.17

parent 83e39bea
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchFromGitHub,
  lib,
  setuptools,
  aiohttp,
  voluptuous,
}:
buildPythonPackage rec {
  pname = "alphaess";
  version = "0.0.17";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "CharlesGillanders";
    repo = "alphaess-openAPI";
    tag = version;
    sha256 = "sha256-ECOL1fCJDL9OEDKElw9yAzF5SF3RB/6TrgK26ddtSzw=";
  };

  build-system = [ setuptools ];

  dependencies = [
    aiohttp
    voluptuous
  ];

  pythonImportsCheck = [
    "alphaess"
  ];

  meta = {
    homepage = "https://github.com/CharlesGillanders/alphaess-openAPI";
    description = "Library that uses the Alpha ESS Open API to retrieve data on your Alpha ESS inverter, photovoltaic panels, and battery";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ benediktbroich ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -690,6 +690,8 @@ self: super: with self; {
  alpha-vantage = callPackage ../development/python-modules/alpha-vantage { };
  alphaessopenapi = callPackage ../development/python-modules/alphaessopenapi { };
  altair = callPackage ../development/python-modules/altair { };
  altcha = callPackage ../development/python-modules/altcha { };