Commit 49cf0330 authored by Robert Schütz's avatar Robert Schütz
Browse files

python3Packages.bleak-retry-connector: update dependencies

parent 24dcbaa4
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
@@ -9,6 +9,8 @@
  pytestCheckHook,
  pytest-asyncio,
  pytest-cov-stub,
  pythonOlder,
  stdenv,
}:

buildPythonPackage rec {
@@ -25,9 +27,14 @@ buildPythonPackage rec {

  build-system = [ poetry-core ];

  dependencies = [
  dependencies =
    lib.optionals (pythonOlder "3.14") [
      bleak
    ]
    ++ lib.optionals (stdenv.hostPlatform.isLinux && pythonOlder "3.14") [
      bluetooth-adapters
    ]
    ++ lib.optionals stdenv.hostPlatform.isLinux [
      dbus-fast
    ];