Merge pull request #332967 from uvNikita/somweb

home-assistant-custom-components.somweb: init at 1.1.0
This commit is contained in:
Martin Weinelt
2024-08-20 15:05:59 +02:00
committed by GitHub
4 changed files with 74 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "somweb";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "taarskog";
repo = "pySOMweb";
rev = "v${version}";
hash = "sha256-cLKEKDCMK7lCtbmj2KbhgJUCZpPnPI5tZvO5L+ey8qI=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
requests
];
pythonImportsCheck = [ "somweb" ];
doCheck = false; # no tests
meta = with lib; {
changelog = "https://github.com/taarskog/pySOMweb/releases/tag/v${version}";
description = "A client library to control garage door operators produced by SOMMER through their SOMweb device";
homepage = "https://github.com/taarskog/pysomweb";
license = licenses.mit;
maintainers = with maintainers; [ uvnikita ];
mainProgram = "somweb";
};
}
@@ -58,6 +58,8 @@
smartthinq-sensors = callPackage ./smartthinq-sensors {};
somweb = callPackage ./somweb {};
spook = callPackage ./spook {};
tuya_local = callPackage ./tuya_local {};
@@ -0,0 +1,29 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
somweb,
}:
buildHomeAssistantComponent rec {
owner = "taarskog";
domain = "somweb";
version = "1.1.0";
src = fetchFromGitHub {
inherit owner;
repo = "home-assistant-component-somweb";
rev = "refs/tags/v${version}";
hash = "sha256-anOcpaGeblFVaP2EFVuxx1EuXnNgxy/QoYqvYJMv1Fo=";
};
dependencies = [ somweb ];
meta = with lib; {
changelog = "https://github.com/taarskog/home-assistant-component-somweb/releases/tag/v${version}";
description = "Custom component for Home Assistant to manage garage doors and gates by Sommer through SOMweb";
homepage = "https://github.com/taarskog/home-assistant-component-somweb";
maintainers = with maintainers; [ uvnikita ];
license = licenses.mit;
};
}
+2
View File
@@ -14712,6 +14712,8 @@ self: super: with self; {
somfy-mylink-synergy = callPackage ../development/python-modules/somfy-mylink-synergy { };
somweb = callPackage ../development/python-modules/somweb { };
sonarr = callPackage ../development/python-modules/sonarr { };
sonos-websocket = callPackage ../development/python-modules/sonos-websocket { };