python3Packages.somweb: init at 1.2.1

This commit is contained in:
Nikita Uvarov 2024-08-07 11:55:01 +02:00
parent fe79aef7ce
commit d5e5482fb4
2 changed files with 43 additions and 0 deletions

View File

@ -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";
};
}

View File

@ -14584,6 +14584,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 { };