Merge pull request #307552 from fabaff/govee-local-api-desc

pthon312Packages.govee-local-api: add description
This commit is contained in:
Fabian Affolter 2024-05-01 23:16:42 +02:00 committed by GitHub
commit 704c726e45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, poetry-dynamic-versioning
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
poetry-dynamic-versioning,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@ -21,21 +22,17 @@ buildPythonPackage rec {
hash = "sha256-J4SG4n6LIZ/G6pEXAzliV7uTWzqsH7rtFe3Y7BJ2dWE=";
};
nativeBuildInputs = [
build-system = [
poetry-core
poetry-dynamic-versioning
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"govee_local_api"
];
pythonImportsCheck = [ "govee_local_api" ];
meta = with lib; {
description = "";
description = "Library to communicate with Govee local API";
homepage = "https://github.com/Galorhallen/govee-local-api";
changelog = "https://github.com/Galorhallen/govee-local-api/releases/tag/v${version}";
license = licenses.asl20;