Unverified Commit c95fb2bd authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

esphome: 2025.9.3 -> 2025.10.2 (#454975)

parents 69057cb4 a2163252
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -13,19 +13,19 @@

buildPythonPackage rec {
  pname = "esphome-dashboard";
  version = "20250814.0";
  version = "20251013.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "esphome";
    repo = "dashboard";
    rev = "refs/tags/${version}";
    hash = "sha256-WQsyv3s3LKKOwYEkX5GcAPnbH061q1ts7TU4HU6I8CI=";
    hash = "sha256-PZf9YLtHqeR+5BRVv1yOMVt6NVlbJTj98ukGnO0RV0Q=";
  };

  npmDeps = fetchNpmDeps {
    inherit src;
    hash = "sha256-ShuJPS7qP2XZ3lwJrFeKRkQwX7tvyiC/0L7sGn0cMn8=";
    hash = "sha256-wWDM4ODlZAjjDonzS4czdBPBaRS0Px2KUlE4AfsqNIQ=";
  };

  build-system = [ setuptools ];
+7 −2
Original line number Diff line number Diff line
@@ -34,14 +34,14 @@ let
in
python.pkgs.buildPythonApplication rec {
  pname = "esphome";
  version = "2025.9.3";
  version = "2025.10.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "esphome";
    repo = "esphome";
    tag = version;
    hash = "sha256-9x4uf0gHCGYLq0gr0MoAp0sk9p82zdH41PaELph0fv0=";
    hash = "sha256-aHDBRZ6o671zriV/rwgsZ57y91Z8Lwx/iiPhIHPzKbs=";
  };

  patches = [
@@ -171,6 +171,11 @@ python.pkgs.buildPythonApplication rec {
    # tries to import platformio, which is wrapped in an fhsenv
    "test_clean_build"
    "test_clean_build_empty_cache_dir"
    "test_clean_all"
    "test_clean_all_partial_exists"
    # tries to use esptool, which is wrapped in an fhsenv
    "test_upload_using_esptool_path_conversion"
    "test_upload_using_esptool_with_file_path"
    # AssertionError: Expected 'run_external_command' to have been called once. Called 0 times.
    "test_run_platformio_cli_sets_environment_variables"
  ];