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

python3Packages.aioesphomeapi: 41.13.0 -> 42.0.0 (#452747)

parents 0344bea0 f8166303
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  fetchFromGitHub,

@@ -25,14 +26,14 @@

buildPythonPackage rec {
  pname = "aioesphomeapi";
  version = "41.13.0";
  version = "42.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "esphome";
    repo = "aioesphomeapi";
    tag = "v${version}";
    hash = "sha256-hrGAByVxnGqFk23fTvGRDJipjHglMS35WeJFM7Gk5S4=";
    hash = "sha256-THhWp5X5oFjFrUMN8Hr0Vs9ElwFro16DoNzvU2Kux/4=";
  };

  build-system = [
@@ -59,6 +60,10 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  # Lack of network sandboxing leads to conflicting listeners when testing
  # this package e.g. in nixpkgs-review on the two suppoted python package sets.
  doCheck = !stdenv.hostPlatform.isDarwin;

  disabledTestPaths = [
    # benchmarking requires pytest-codespeed
    "tests/benchmarks"