Unverified Commit b834903c authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

home-assistant: 2025.11.3 -> 2025.12.0 (#465435)

parents 2c020238 83dc748f
Loading
Loading
Loading
Loading
+28 −2
Original line number Diff line number Diff line
@@ -3,6 +3,10 @@
  python3,
  fetchFromGitHub,
  nixosTests,
  perl,
  radicale,
  which,
  xandikos,
}:

python3.pkgs.buildPythonApplication rec {
@@ -17,6 +21,13 @@ python3.pkgs.buildPythonApplication rec {
    hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE=";
  };

  postPatch = ''
    patchShebangs tests
    substituteInPlace tests/test_calendar-cli.sh \
      --replace-fail "../bin/calendar-cli.py" "$out/bin/calendar-cli" \
      --replace-fail "../bin/calendar-cli" "$out/bin/calendar-cli"
  '';

  build-system = with python3.pkgs; [
    setuptools
  ];
@@ -29,10 +40,25 @@ python3.pkgs.buildPythonApplication rec {
    tzlocal
    click
    six
    vobject
  ];

  nativeCheckInputs = [
    perl
    (python3.pkgs.toPythonModule (radicale.override { inherit python3; }))
    which
    xandikos
  ];

  # tests require networking
  doCheck = false;
  checkPhase = ''
    runHook preCheck

    pushd tests
    ./test_calendar-cli.sh
    popd

    runHook postCheck
  '';

  passthru.tests = {
    inherit (nixosTests) radicale;
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ python3Packages.buildPythonApplication rec {
    gst-python
    liblarch
    caldav
    vobject
  ];

  nativeCheckInputs = with python3Packages; [
+2 −2
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@

buildPythonPackage rec {
  pname = "actron-neo-api";
  version = "0.1.84";
  version = "0.1.87";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "kclif9";
    repo = "actronneoapi";
    tag = "v${version}";
    hash = "sha256-ihIg264ZX0tCfRwVLkiq62ke2G125ObcrVabPCDrc4c=";
    hash = "sha256-8Y1vl+KjjAnobb9wORZCcXTLStuGOth3dlX0Goq+pxE=";
  };

  build-system = [
+2 −2
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

buildPythonPackage rec {
  pname = "aioamazondevices";
  version = "8.0.1";
  version = "10.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "chemelli74";
    repo = "aioamazondevices";
    tag = "v${version}";
    hash = "sha256-q8wmBBXZSu69BAZ1wY4/tlW/usiWwlwVCnAEOOZs5TE=";
    hash = "sha256-OS6qROAnH3JnlhAJJWevfLvMq5PQGL/lQM4XToqHZEU=";
  };

  build-system = [ poetry-core ];
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@

buildPythonPackage rec {
  pname = "aiomealie";
  version = "1.0.1";
  version = "1.1.0";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
    owner = "joostlek";
    repo = "python-mealie";
    tag = "v${version}";
    hash = "sha256-J0G0vRFkYZDDVBYxd4Dc/tSZJ991H1F2Acsew0zf9Oo=";
    hash = "sha256-sz/8b0iTtvS4RPBJynvGKf5oiRPJ9Lu/z6leZ1Hoqns=";
  };

  build-system = [ poetry-core ];
Loading