blob: a9d6d4f987c72fd37e2b9e99f791dd0f07217f8d (
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
42
43
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
httpx,
pytest-asyncio,
pytest-httpx,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "iceportal";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-ecosystem";
repo = "python-iceportal";
tag = version;
hash = "sha256-kpAUgGi2fAHzQYuZAaQW9wdrYjwbduRsoTwSuzcjJa8=";
};
build-system = [ poetry-core ];
dependencies = [ httpx ];
nativeCheckInputs = [
pytest-asyncio
pytest-httpx
pytestCheckHook
];
pythonImportsCheck = [ "iceportal" ];
meta = {
description = "Library for getting data from the ICE Portal";
homepage = "https://github.com/home-assistant-ecosystem/python-iceportal";
changelog = "https://github.com/home-assistant-ecosystem/python-iceportal/releases/tag/${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|