Unverified Commit 704c726e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

pthon312Packages.govee-local-api: add description
parents 6a72138d 3338f0f5
Loading
Loading
Loading
Loading
+12 −15
Original line number Diff line number Diff line
{ 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;