This commit is contained in:
mjallen18
2026-03-27 09:05:31 -05:00
parent 4c1332e67a
commit add39956f7
7 changed files with 41 additions and 25 deletions

View File

@@ -1,23 +1,21 @@
{
lib,
python3Packages,
home-assistant,
}:
python3Packages.buildPythonPackage rec {
home-assistant.python.pkgs.buildPythonPackage rec {
pname = "gehomesdk";
version = "2026.2.0";
pyproject = true;
disabled = python3Packages.pythonOlder "3.9";
src = python3Packages.fetchPypi {
src = home-assistant.python.pkgs.fetchPypi {
inherit pname version;
hash = "sha256-+BWGkUDKd+9QGbdXuLjmJxLm1xUv0dpIRlPlDkUJ25w=";
};
build-system = with python3Packages; [ setuptools ];
build-system = with home-assistant.python.pkgs; [ setuptools ];
dependencies = with python3Packages; [
dependencies = with home-assistant.python.pkgs; [
aiohttp
beautifulsoup4
bidict