13 buildPythonPackage rec {
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
21 owner = "home-assistant-ecosystem";
22 repo = "python-iceportal";
23 rev = "refs/tags/${version}";
24 hash = "sha256-kpAUgGi2fAHzQYuZAaQW9wdrYjwbduRsoTwSuzcjJa8=";
27 build-system = [ poetry-core ];
29 dependencies = [ httpx ];
37 pythonImportsCheck = [ "iceportal" ];
40 description = "Library for getting data from the ICE Portal";
41 homepage = "https://github.com/home-assistant-ecosystem/python-iceportal";
42 changelog = "https://github.com/home-assistant-ecosystem/python-iceportal/releases/tag/${version}";
43 license = with licenses; [ mit ];
44 maintainers = with maintainers; [ fab ];