blob: 4eae01bd254f4eba64601e7cf983c5d9862c13ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
aiohttp,
voluptuous,
}:
buildPythonPackage rec {
pname = "alphaessopenapi";
version = "0.0.19";
pyproject = true;
src = fetchFromGitHub {
owner = "CharlesGillanders";
repo = "alphaess-openAPI";
tag = version;
hash = "sha256-wdwA1MIQrkZCT4zIf8WXyq0+F+peC/auVtjDJ8ZZyxE=";
};
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 ];
};
}
|