blob: e9d592df461cf4abc789d890b23a023bcbea9758 (
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
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
aiohttp,
poetry-core,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "apsystems-ez1";
version = "2.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "SonnenladenGmbH";
repo = "APsystems-EZ1-API";
tag = version;
hash = "sha256-ry3sQPkYnH0asmE41lEQA5G2tk07eTpsBiuJbVIjrXU=";
};
build-system = [ poetry-core ];
dependencies = [ aiohttp ];
pythonImportsCheck = [ "APsystemsEZ1" ];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
];
meta = {
changelog = "https://github.com/SonnenladenGmbH/APsystems-EZ1-API/releases/tag/${src.tag}";
description = "Streamlined interface for interacting with the local API of APsystems EZ1 Microinverters";
homepage = "https://github.com/SonnenladenGmbH/APsystems-EZ1-API";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pyrox0 ];
};
}
|