python3Packages.somweb: init at 1.2.1
This commit is contained in:
parent
fe79aef7ce
commit
d5e5482fb4
41
pkgs/development/python-modules/somweb/default.nix
Normal file
41
pkgs/development/python-modules/somweb/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user