Skip to content

Commit 51b1755

Browse files
authored
home-assistant: 2025.1.2 -> 2025.1.3 (NixOS#375408)
2 parents 003df75 + a479a9c commit 51b1755

File tree

16 files changed

+56
-80
lines changed

16 files changed

+56
-80
lines changed

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

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

1010
buildPythonPackage rec {
1111
pname = "aioairzone";
12-
version = "0.9.8";
12+
version = "0.9.9";
1313
pyproject = true;
1414

1515
disabled = pythonOlder "3.11";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
1818
owner = "Noltari";
1919
repo = "aioairzone";
2020
tag = version;
21-
hash = "sha256-wqJpdD4zd5hToZJaacjhoHEC+rSyLjPs7vwwAN92xHM=";
21+
hash = "sha256-K/QzoN08keaD5+o5HrKOwrNfIugg1GONdwT7RycOM18=";
2222
};
2323

2424
build-system = [ setuptools ];

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
fetchFromGitHub,
55
poetry-core,
66
pytest-asyncio,
7+
pytest-cov-stub,
78
pytestCheckHook,
89
pythonOlder,
910
}:
1011

1112
buildPythonPackage rec {
1213
pname = "aiooui";
13-
version = "0.1.7";
14+
version = "0.1.9";
1415
pyproject = true;
1516

1617
disabled = pythonOlder "3.9";
@@ -19,22 +20,22 @@ buildPythonPackage rec {
1920
owner = "Bluetooth-Devices";
2021
repo = "aiooui";
2122
tag = "v${version}";
22-
hash = "sha256-vnO3Lh+d/8mES2i4jKTH4RviURUFqb3Vj6u5sxUGf1o=";
23+
hash = "sha256-tY8/hb3BpxzKM/IB7anfmqGcXK6FmiuoJVxqpFW1Maw=";
2324
};
2425

2526
postPatch = ''
2627
# Remove requirements and build part for the OUI data
2728
substituteInPlace pyproject.toml \
28-
--replace-fail "-v -Wdefault --cov=aiooui --cov-report=term-missing:skip-covered" "" \
2929
--replace-fail 'script = "build_oui.py"' "" \
30-
--replace-fail ", 'requests'" "" \
30+
--replace-fail ", 'requests', 'aiohttp'" "" \
3131
--replace-fail '"setuptools>=65.4.1", ' ""
3232
'';
3333

34-
nativeBuildInputs = [ poetry-core ];
34+
build-system = [ poetry-core ];
3535

3636
nativeCheckInputs = [
3737
pytest-asyncio
38+
pytest-cov-stub
3839
pytestCheckHook
3940
];
4041

@@ -43,7 +44,7 @@ buildPythonPackage rec {
4344
meta = with lib; {
4445
description = "Async OUI lookups";
4546
homepage = "https://github.com/Bluetooth-Devices/aiooui";
46-
changelog = "https://github.com/Bluetooth-Devices/aiooui/blob/${version}/CHANGELOG.md";
47+
changelog = "https://github.com/Bluetooth-Devices/aiooui/blob/${src.tag}/CHANGELOG.md";
4748
license = licenses.mit;
4849
maintainers = with maintainers; [ fab ];
4950
};

pkgs/development/python-modules/deebot-client/default.nix

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,22 @@
77
defusedxml,
88
docker,
99
fetchFromGitHub,
10-
hatch-vcs,
11-
hatchling,
1210
numpy,
1311
pillow,
12+
pkg-config,
1413
pycountry,
1514
pytest-asyncio,
1615
pytestCheckHook,
1716
pythonOlder,
17+
rustPlatform,
1818
svg-py,
1919
testfixtures,
20+
xz,
2021
}:
2122

2223
buildPythonPackage rec {
2324
pname = "deebot-client";
24-
version = "10.1.0";
25+
version = "11.0.0";
2526
pyproject = true;
2627

2728
disabled = pythonOlder "3.12";
@@ -30,17 +31,30 @@ buildPythonPackage rec {
3031
owner = "DeebotUniverse";
3132
repo = "client.py";
3233
tag = version;
33-
hash = "sha256-qnXDr8+e13/VMFhFBbQJPdct5MjHwcBkLl+fo8xaEgY=";
34+
hash = "sha256-G8NLirz81+b2YJBvxmfCEPpy2M9MMvs3n6JmdXR+3oc=";
35+
};
36+
37+
cargoDeps = rustPlatform.fetchCargoTarball {
38+
inherit pname version src;
39+
hash = "sha256-9rXd5FFR+Ma0LJfKXwkDqZp096PA34V7TzPe/tahE7c=";
3440
};
3541

3642
pythonRelaxDeps = [
3743
"aiohttp"
3844
"defusedxml"
3945
];
4046

41-
build-system = [
42-
hatch-vcs
43-
hatchling
47+
build-system = with rustPlatform; [
48+
cargoSetupHook
49+
maturinBuildHook
50+
];
51+
52+
nativeBuildInputs = [
53+
pkg-config
54+
];
55+
56+
buildInputs = [
57+
xz
4458
];
4559

4660
dependencies = [
@@ -61,6 +75,10 @@ buildPythonPackage rec {
6175
testfixtures
6276
];
6377

78+
preCheck = ''
79+
rm -rf deebot_client
80+
'';
81+
6482
pythonImportsCheck = [ "deebot_client" ];
6583

6684
disabledTests = [

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

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

1919
buildPythonPackage rec {
2020
pname = "demetriek";
21-
version = "1.1.1";
21+
version = "1.2.0";
2222
pyproject = true;
2323

2424
disabled = pythonOlder "3.11";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
2727
owner = "frenck";
2828
repo = "python-demetriek";
2929
tag = "v${version}";
30-
hash = "sha256-OTYQFw3Jy+sRGoPYVp5VKgCAzv9Gy2Fn2GjTGdsKjak=";
30+
hash = "sha256-KqLkct4Kd8wa5eKYJJq1y/5z5PbO0XaK0aGzs3bm8fs=";
3131
};
3232

3333
postPatch = ''

pkgs/development/python-modules/knx-frontend/default.nix

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

88
buildPythonPackage rec {
99
pname = "knx-frontend";
10-
version = "2024.12.26.233449";
10+
version = "2025.1.18.164225";
1111
pyproject = true;
1212

1313
# TODO: source build, uses yarn.lock
1414
src = fetchPypi {
1515
pname = "knx_frontend";
1616
inherit version;
17-
hash = "sha256-PlV1CFUtKdUMXnnyeil6c+N7VBmsjmOSs8uYziGrZ9s=";
17+
hash = "sha256-Q1y6hhOP+92BSo7FAJ01EarN57iuknqLQQhH7frhPn8=";
1818
};
1919

2020
build-system = [ setuptools ];

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ buildPythonPackage rec {
2020
hash = "sha256-ggEbzN9FfqT968hgOblIh5dfVibzgUEc4SoZfBGOCwo=";
2121
};
2222

23+
pythonRelaxDeps = [ "colorlog" ];
24+
2325
build-system = [ setuptools ];
2426

2527
dependencies = [

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

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

99
buildPythonPackage rec {
1010
pname = "nhc";
11-
version = "0.3.3";
11+
version = "0.3.4";
1212
pyproject = true;
1313

1414
src = fetchFromGitHub {
1515
owner = "vandeurenglenn";
1616
repo = "nhc";
1717
tag = "v${version}";
18-
hash = "sha256-s3DVdnjhRUZRG/LwKwOuZSiNtzpccBtHl/PNvux/NwQ=";
18+
hash = "sha256-TSfOcSeedr0cSDHo1bqftUOZ3AeCW3Zgb80IBv3eerM=";
1919
};
2020

2121
build-system = [ setuptools ];

pkgs/development/python-modules/onvif-zeep-async/default.nix

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

1212
buildPythonPackage rec {
1313
pname = "onvif-zeep-async";
14-
version = "3.1.13";
14+
version = "3.2.3";
1515
pyproject = true;
1616

1717
disabled = pythonOlder "3.7";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
2020
owner = "openvideolibs";
2121
repo = "python-onvif-zeep-async";
2222
tag = "v${version}";
23-
hash = "sha256-Z9LtKcgyebmdrChRz0QwiQdnrtcIVeCtKQAvL9gBMY4=";
23+
hash = "sha256-guxep37d/MT9dp+sugfH0Ik2aIiwBSpx8x9Jj7OlNvw=";
2424
};
2525

2626
build-system = [ setuptools ];

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

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

1616
buildPythonPackage rec {
1717
pname = "pyhiveapi";
18-
version = "0.5.16";
18+
version = "1.0.1";
1919
pyproject = true;
2020

2121
disabled = pythonOlder "3.6";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
2424
owner = "Pyhass";
2525
repo = "Pyhiveapi";
2626
tag = "v${version}";
27-
hash = "sha256-gPou5KGLFEFP29qSpRg+6sCiXOwfoF1gyhBVERYJ1LI=";
27+
hash = "sha256-/Q6nQb6JyjjWJv7Yj+EJdqOMy+j3cYPIkRpXa3Q48Oo=";
2828
};
2929

3030
postPatch = ''

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 = "2025.1.2";
5+
version = "2025.1.3";
66
components = {
77
"3_day_blinds" =
88
ps: with ps; [

0 commit comments

Comments
 (0)