Unverified Commit d1943d73 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python312Packages.govee-local-api: 1.4.4 -> 1.4.5

parent 506449e1
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -2,15 +2,15 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch2,
  poetry-core,
  poetry-dynamic-versioning,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "govee-local-api";
  version = "1.4.4";
  version = "1.4.5";
  pyproject = true;

  disabled = pythonOlder "3.10";
@@ -19,12 +19,19 @@ buildPythonPackage rec {
    owner = "Galorhallen";
    repo = "govee-local-api";
    rev = "refs/tags/v${version}";
    hash = "sha256-J4SG4n6LIZ/G6pEXAzliV7uTWzqsH7rtFe3Y7BJ2dWE=";
    hash = "sha256-kmIuo/e3eLJTgmI+2Oq9Y0jov/133jXwgoBayGv33r4=";
  };

  patches = [
    (fetchpatch2 {
      # configure pep517 build-backend
      url = "https://github.com/Galorhallen/govee-local-api/commit/897a21ae723ff94343bbf4ba1541e3a1d3e03c94.patch";
      hash = "sha256-/d5jGKGME768Ar+WWWQUByHJPGB31OHShI4oLjcMUIU=";
    })
  ];

  build-system = [
    poetry-core
    poetry-dynamic-versioning
  ];

  nativeCheckInputs = [ pytestCheckHook ];