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

home-assistant: 2025.11.1 -> 2025.11.2 (#461743)

parents 97515e04 49b7b034
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -2,24 +2,24 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "cronsim";
  version = "2.6";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  version = "2.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "cuu508";
    repo = "cronsim";
    tag = version;
    hash = "sha256-WJ3v2cqAKZkXp1u8xJ0aFuyHPq0gn24DRxpnq5cH/90=";
    hash = "sha256-9TextQcZAX5Ri6cc+Qd4T+u8XjxriqoTsy/9/G8XDAM=";
  };

  build-system = [ setuptools ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "cronsim" ];
+2 −11
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
  aresponses,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  lib,
  mashumaro,
  orjson,
@@ -16,24 +15,16 @@

buildPythonPackage rec {
  pname = "pyportainer";
  version = "1.0.12";
  version = "1.0.14";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "erwindouna";
    repo = "pyportainer";
    tag = "v${version}";
    hash = "sha256-goTYZhv/+4o2/SMOqANMnR3u4YxwDJVcvT0pz8MT7M8=";
    hash = "sha256-5ARTHT5NmRBMOMVRPWAICdScAGUbkebtLyJqUW195Mw=";
  };

  patches = [
    (fetchpatch {
      name = "remove-mkdocs-from-dependencies.patch";
      url = "https://github.com/erwindouna/pyportainer/commit/8ed65c3870ff368465267e9bf2cda441b7b28994.patch";
      hash = "sha256-3FE8NngAajIt8lDjG//sDPULq8mZ0f53iVemJ2xJ4MQ=";
    })
  ];

  build-system = [ poetry-core ];

  dependencies = [
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@

buildPythonPackage rec {
  pname = "pysmartthings";
  version = "3.3.2";
  version = "3.3.3";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
    owner = "andrewsayre";
    repo = "pysmartthings";
    tag = "v${version}";
    hash = "sha256-8p9lEf+SoU1WRJxavUwUjlIKjQxcPyBsgVLcwv8XFHs=";
    hash = "sha256-1fvgQE7p5R+Bq1O6wSHpPSIQI7pQRUXF+tXcTNLZ2II=";
  };

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

buildPythonPackage rec {
  pname = "python-open-router";
  version = "0.3.2";
  version = "0.3.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "joostlek";
    repo = "python-open-router";
    tag = "v${version}";
    hash = "sha256-SSpSoo82FD1KUwbZpeHpl9I4A50yuJmdTVaHDxLZXso=";
    hash = "sha256-RFKtt8ViTIEBmahY9H9YhSdVSlxaBEPOxRWPST9GoAM=";
  };

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

buildPythonPackage rec {
  pname = "pyvesync";
  version = "3.1.4";
  version = "3.2.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "webdjoe";
    repo = "pyvesync";
    tag = version;
    hash = "sha256-l+b53B8Bdd/WnM2Oe9srST2T2KXaQfXtfc5+BwNte90=";
    hash = "sha256-7QtyI5U1NRy0/iujfObdRHkwseetaD2M4f/buj8A9AY=";
  };

  build-system = [ setuptools ];
Loading