Merge pull request #289770 from fabaff/govee-local-api

python311Packages.govee-local-api: init at 1.4.4
This commit is contained in:
Martin Weinelt 2024-02-19 02:30:39 +01:00 committed by GitHub
commit 5225526810
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, poetry-dynamic-versioning
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "govee-local-api";
version = "1.4.4";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "Galorhallen";
repo = "govee-local-api";
rev = "refs/tags/v${version}";
hash = "sha256-J4SG4n6LIZ/G6pEXAzliV7uTWzqsH7rtFe3Y7BJ2dWE=";
};
nativeBuildInputs = [
poetry-core
poetry-dynamic-versioning
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"govee_local_api"
];
meta = with lib; {
description = "";
homepage = "https://github.com/Galorhallen/govee-local-api";
changelog = "https://github.com/Galorhallen/govee-local-api/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1807,10 +1807,11 @@
aiohttp-fast-url-dispatcher
aiohttp-zlib-ng
fnv-hash-fast
govee-local-api
ifaddr
psutil-home-assistant
sqlalchemy
]; # missing inputs: govee-local-api
];
"gpsd" = ps: with ps; [
gps3
];
@ -6077,6 +6078,7 @@
"google_travel_time"
"google_wifi"
"govee_ble"
"govee_light_local"
"gpsd"
"gpslogger"
"graphite"

View file

@ -4854,6 +4854,8 @@ self: super: with self; {
govee-led-wez = callPackage ../development/python-modules/govee-led-wez { };
govee-local-api = callPackage ../development/python-modules/govee-local-api { };
goveelights = callPackage ../development/python-modules/goveelights { };
gpapi = callPackage ../development/python-modules/gpapi { };