Skip to content

Commit 7bf5ade

Browse files
authored
home-assistant: 2024.9.0 -> 2024.9.1 (#340234)
2 parents 6ca18ce + 798b763 commit 7bf5ade

File tree

8 files changed

+51
-23
lines changed

8 files changed

+51
-23
lines changed

pkgs/development/python-modules/aioazuredevops/default.nix

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
buildPythonPackage rec {
2424
pname = "aioazuredevops";
25-
version = "2.2.0";
25+
version = "2.2.1";
2626
pyproject = true;
2727

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

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

61+
disabledTests = [
62+
# https://github.com/timmo001/aioazuredevops/issues/44
63+
"test_get_project"
64+
"test_get_builds"
65+
"test_get_build"
66+
];
67+
68+
pytestFlagsArray = [ "--snapshot-update" ];
69+
6170
pythonImportsCheck = [ "aioazuredevops" ];
6271

6372
meta = with lib; {

pkgs/development/python-modules/aiorussound/default.nix

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,49 @@
22
lib,
33
buildPythonPackage,
44
fetchFromGitHub,
5+
pythonOlder,
56

67
# build-system
7-
setuptools,
8+
poetry-core,
9+
10+
# dependencies
11+
mashumaro,
12+
orjson,
13+
14+
# tests
15+
pytestCheckHook,
816
}:
917

1018
buildPythonPackage rec {
1119
pname = "aiorussound";
12-
version = "2.3.2";
20+
version = "3.0.5";
1321
pyproject = true;
1422

23+
# requires newer f-strings introduced in 3.12
24+
disabled = pythonOlder "3.12";
25+
1526
src = fetchFromGitHub {
1627
owner = "noahhusby";
1728
repo = "aiorussound";
1829
rev = "refs/tags/${version}";
19-
hash = "sha256-lQDHwm6dpernRYktu6eqV8uP7FHHHAU28viLg0q58+8=";
30+
hash = "sha256-tv/Box8YqmFXvnezp44lKrPscK9K24+mXBv9aZw/3M4=";
2031
};
2132

22-
build-system = [ setuptools ];
33+
build-system = [ poetry-core ];
34+
35+
dependencies = [
36+
mashumaro
37+
orjson
38+
];
2339

24-
doCheck = false; # no tests
40+
nativeCheckInputs = [
41+
pytestCheckHook
42+
];
2543

2644
pythonImportsCheck = [ "aiorussound" ];
2745

2846
meta = with lib; {
47+
changelog = "https://github.com/noahhusby/aiorussound/releases/tag/${version}";
2948
description = "Async python package for interfacing with Russound RIO hardware";
3049
homepage = "https://github.com/noahhusby/aiorussound";
3150
license = licenses.mit;

pkgs/development/python-modules/pypck/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
buildPythonPackage rec {
1414
pname = "pypck";
15-
version = "0.7.21";
15+
version = "0.7.22";
1616
pyproject = true;
1717

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

2727
postPatch = ''

pkgs/development/python-modules/sfrbox-api/default.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,26 @@
1515

1616
buildPythonPackage rec {
1717
pname = "sfrbox-api";
18-
version = "0.0.9";
18+
version = "0.0.10";
1919
pyproject = true;
2020

21-
disabled = pythonOlder "3.8";
21+
disabled = pythonOlder "3.9";
2222

2323
src = fetchFromGitHub {
2424
owner = "hacf-fr";
2525
repo = "sfrbox-api";
2626
rev = "refs/tags/v${version}";
27-
hash = "sha256-rMfX9vA8IuWxXvVs4WYNHO6neeoie/3gABwhXyJoAF8=";
27+
hash = "sha256-xvtusgqCseXAmiPQBFFZnRS9KmuhzHhZUAj5aaqyFrE=";
2828
};
2929

3030
pythonRelaxDeps = [
3131
"defusedxml"
3232
"pydantic"
3333
];
3434

35-
nativeBuildInputs = [ poetry-core ];
35+
build-system = [ poetry-core ];
3636

37-
propagatedBuildInputs = [
37+
dependencies = [
3838
defusedxml
3939
httpx
4040
pydantic
@@ -54,10 +54,10 @@ buildPythonPackage rec {
5454

5555
meta = with lib; {
5656
description = "Module for the SFR Box API";
57-
mainProgram = "sfrbox-api";
5857
homepage = "https://github.com/hacf-fr/sfrbox-api";
5958
changelog = "https://github.com/hacf-fr/sfrbox-api/releases/tag/v${version}";
6059
license = licenses.mit;
6160
maintainers = with maintainers; [ fab ];
61+
mainProgram = "sfrbox-api";
6262
};
6363
}

pkgs/servers/home-assistant/component-packages.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Do not edit!
33

44
{
5-
version = "2024.9.0";
5+
version = "2024.9.1";
66
components = {
77
"3_day_blinds" = ps: with ps; [
88
];

pkgs/servers/home-assistant/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ let
414414
extraBuildInputs = extraPackages python.pkgs;
415415

416416
# Don't forget to run update-component-packages.py after updating
417-
hassVersion = "2024.9.0";
417+
hassVersion = "2024.9.1";
418418

419419
in python.pkgs.buildPythonApplication rec {
420420
pname = "homeassistant";
@@ -432,13 +432,13 @@ in python.pkgs.buildPythonApplication rec {
432432
owner = "home-assistant";
433433
repo = "core";
434434
rev = "refs/tags/${version}";
435-
hash = "sha256-tzEiT+1NvwmH/j1FnmUcanwjSGS8+M/FJ2wZY7qAdYk=";
435+
hash = "sha256-jwkLlmwP9rxwGFVagVyVrO6scOMzuva1Pz706nb3Ato=";
436436
};
437437

438438
# Secondary source is pypi sdist for translations
439439
sdist = fetchPypi {
440440
inherit pname version;
441-
hash = "sha256-KTseRVRn3O75Sjot4f7fgKioKKEY33eXHcFufsPKLak=";
441+
hash = "sha256-0+tXKnkcpjISqapvFh7nPKfPxJrSACuxulejk4pCPUQ=";
442442
};
443443

444444
build-system = with python.pkgs; [

pkgs/servers/home-assistant/frontend.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildPythonPackage rec {
44
# the frontend version corresponding to a specific home-assistant version can be found here
55
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
66
pname = "home-assistant-frontend";
7-
version = "20240904.0";
7+
version = "20240906.0";
88
format = "wheel";
99

1010
src = fetchPypi {
1111
inherit version format;
1212
pname = "home_assistant_frontend";
1313
dist = "py3";
1414
python = "py3";
15-
hash = "sha256-UauRL6AbyQgk7av1AuE49nlWEkuRRQxQykFHeo3ZpGU=";
15+
hash = "sha256-iWSpwgp5mdAhuZgF+1uNL0aovjM7CZ4SbM0HHQktfAk=";
1616
};
1717

1818
# there is nothing to strip in this package

pkgs/servers/home-assistant/stubs.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
buildPythonPackage rec {
1010
pname = "homeassistant-stubs";
11-
version = "2024.9.0";
11+
version = "2024.9.1";
1212
pyproject = true;
1313

1414
disabled = python.version != home-assistant.python.version;
@@ -17,7 +17,7 @@ buildPythonPackage rec {
1717
owner = "KapJI";
1818
repo = "homeassistant-stubs";
1919
rev = "refs/tags/${version}";
20-
hash = "sha256-8t8r0CjiMvu73A+NtwF6/KMm+LkvMc/k4d1YPgWzWt8=";
20+
hash = "sha256-snYfeMKZhQWJx3hi7cvY9tswmPxmtiPHz4S8IM31DvU=";
2121
};
2222

2323
build-system = [

0 commit comments

Comments
 (0)