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

home-assistant: 2024.9.0 -> 2024.9.1 (#340234)

parents 6ca18cee 798b763e
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@

buildPythonPackage rec {
  pname = "aioazuredevops";
  version = "2.2.0";
  version = "2.2.1";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -31,7 +31,7 @@ buildPythonPackage rec {
    owner = "timmo001";
    repo = "aioazuredevops";
    rev = "refs/tags/${version}";
    hash = "sha256-1v58I9WOyyrp9n+qdvVeMZ3EObqP/06XCOZYS0nEvPU=";
    hash = "sha256-RZBiFPzYtEoc51T3irVHL9xVlZgACyM2lu1TkMoatqU=";
  };

  postPatch = ''
@@ -58,6 +58,15 @@ buildPythonPackage rec {
    syrupy
  ];

  disabledTests = [
    # https://github.com/timmo001/aioazuredevops/issues/44
    "test_get_project"
    "test_get_builds"
    "test_get_build"
  ];

  pytestFlagsArray = [ "--snapshot-update" ];

  pythonImportsCheck = [ "aioazuredevops" ];

  meta = with lib; {
+24 −5
Original line number Diff line number Diff line
@@ -2,30 +2,49 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,

  # build-system
  setuptools,
  poetry-core,

  # dependencies
  mashumaro,
  orjson,

  # tests
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "aiorussound";
  version = "2.3.2";
  version = "3.0.5";
  pyproject = true;

  # requires newer f-strings introduced in 3.12
  disabled = pythonOlder "3.12";

  src = fetchFromGitHub {
    owner = "noahhusby";
    repo = "aiorussound";
    rev = "refs/tags/${version}";
    hash = "sha256-lQDHwm6dpernRYktu6eqV8uP7FHHHAU28viLg0q58+8=";
    hash = "sha256-tv/Box8YqmFXvnezp44lKrPscK9K24+mXBv9aZw/3M4=";
  };

  build-system = [ setuptools ];
  build-system = [ poetry-core ];

  dependencies = [
    mashumaro
    orjson
  ];

  doCheck = false; # no tests
  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "aiorussound" ];

  meta = with lib; {
    changelog = "https://github.com/noahhusby/aiorussound/releases/tag/${version}";
    description = "Async python package for interfacing with Russound RIO hardware";
    homepage = "https://github.com/noahhusby/aiorussound";
    license = licenses.mit;
+2 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "pypck";
  version = "0.7.21";
  version = "0.7.22";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
    owner = "alengwenus";
    repo = "pypck";
    rev = "refs/tags/${version}";
    hash = "sha256-6Ng+Jw5ZDtkKOftFVhy1uOjzcmeKI5VqWzPn3EkKfGI=";
    hash = "sha256-rtlcsmjvhC232yjt258ne51tL//eKsCKYYc/yHG7HUU=";
  };

  postPatch = ''
+6 −6
Original line number Diff line number Diff line
@@ -15,16 +15,16 @@

buildPythonPackage rec {
  pname = "sfrbox-api";
  version = "0.0.9";
  version = "0.0.10";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "hacf-fr";
    repo = "sfrbox-api";
    rev = "refs/tags/v${version}";
    hash = "sha256-rMfX9vA8IuWxXvVs4WYNHO6neeoie/3gABwhXyJoAF8=";
    hash = "sha256-xvtusgqCseXAmiPQBFFZnRS9KmuhzHhZUAj5aaqyFrE=";
  };

  pythonRelaxDeps = [
@@ -32,9 +32,9 @@ buildPythonPackage rec {
    "pydantic"
  ];

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [
  dependencies = [
    defusedxml
    httpx
    pydantic
@@ -54,10 +54,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Module for the SFR Box API";
    mainProgram = "sfrbox-api";
    homepage = "https://github.com/hacf-fr/sfrbox-api";
    changelog = "https://github.com/hacf-fr/sfrbox-api/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    mainProgram = "sfrbox-api";
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Do not edit!

{
  version = "2024.9.0";
  version = "2024.9.1";
  components = {
    "3_day_blinds" = ps: with ps; [
    ];
Loading