From bae47f31f2235a61968197520434dbeb3ea1e965 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 21 Sep 2023 18:19:46 +0200 Subject: python311Packages.hahomematic: 2023.9.3 -> 2023.9.4 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.9.3...2023.9.4 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.9.4 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 9a3d67da997..3d92bc84a0d 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.9.3"; + version = "2023.9.4"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-j8uM/vEfZO1C4jsYU68nTt/cmhRKsW2MTFG84g53vE4="; + hash = "sha256-sxUSUj9yJyY89Ma0R0hm5PCt/kiwb6Bj7CyK9Vc14uk="; }; nativeBuildInputs = [ -- cgit 1.4.1 From 6e9c9d76409dfd96b1deba85dec57a4f826fd200 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 28 Sep 2023 12:46:14 +0200 Subject: python311Packages.hahomematic: 2023.9.4 -> 2023.9.5 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.9.5 --- pkgs/development/python-modules/hahomematic/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 3d92bc84a0d..65af6047339 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.9.4"; + version = "2023.9.5"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -26,9 +26,15 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-sxUSUj9yJyY89Ma0R0hm5PCt/kiwb6Bj7CyK9Vc14uk="; + hash = "sha256-bs9rAlEgRYjQ2vEPfGxWo4sAn48hiC3IFh9VKVY33KY="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace "setuptools~=68.2" "setuptools" \ + --replace "wheel~=0.41.2" "wheel" + ''; + nativeBuildInputs = [ setuptools wheel -- cgit 1.4.1 From 50722cce83a32e7900a563916e39cf74762ade68 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 30 Sep 2023 18:36:51 +0200 Subject: python311Packages.hahomematic: 2023.9.5 -> 2023.9.6 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.9.6 --- pkgs/development/python-modules/hahomematic/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 65af6047339..d6940951e1b 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -2,6 +2,7 @@ , aiohttp , buildPythonPackage , fetchFromGitHub +, freezegun , orjson , pydevccu , pytest-aiohttp @@ -17,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.9.5"; + version = "2023.9.6"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -26,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-bs9rAlEgRYjQ2vEPfGxWo4sAn48hiC3IFh9VKVY33KY="; + hash = "sha256-KvtOxajBMd41QFxbEFJB3YRbBFG6V4ce49l4W8K/j3c="; }; postPatch = '' @@ -48,6 +49,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + freezegun pydevccu pytest-aiohttp pytestCheckHook -- cgit 1.4.1 From 07d1f6f12cc0dfee22c548e4fbf9f81d3ba0a6a7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 30 Sep 2023 18:38:10 +0200 Subject: python311Packages.hahomematic: 2023.9.6 -> 2023.9.7 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.9.6...2023.9.7 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.9.7 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index d6940951e1b..86f7d37e72d 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.9.6"; + version = "2023.9.7"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-KvtOxajBMd41QFxbEFJB3YRbBFG6V4ce49l4W8K/j3c="; + hash = "sha256-55aZS5jSLBQ+FFkP9l5H7NU+qjh5UU/XPx2KgdWr3fo="; }; postPatch = '' -- cgit 1.4.1 From a6f1766e92eb0e30472fd113f62bc599b51a754a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 30 Sep 2023 18:39:32 +0200 Subject: python311Packages.hahomematic: 2023.9.7 -> 2023.9.8 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.9.7...2023.9.8 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.9.8 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 86f7d37e72d..d1e3a50a0b4 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.9.7"; + version = "2023.9.8"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-55aZS5jSLBQ+FFkP9l5H7NU+qjh5UU/XPx2KgdWr3fo="; + hash = "sha256-g8ddWQzfwvKx2bLh8c+RRwlk/QJWbCxOqseZE+AcTXg="; }; postPatch = '' -- cgit 1.4.1 From 7138c2341d441187f4f198637a9788b136387e38 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 2 Oct 2023 08:57:02 +0200 Subject: python311Packages.hahomematic: 2023.9.8 -> 2023.10.0 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.9.8...2023.10.0 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.0 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index d1e3a50a0b4..4bda4e40b6f 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.9.8"; + version = "2023.10.0"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-g8ddWQzfwvKx2bLh8c+RRwlk/QJWbCxOqseZE+AcTXg="; + hash = "sha256-1G77gMeLXU6/WyqboxVg1gK9fM9n0golaAqLZ+eGs+8="; }; postPatch = '' -- cgit 1.4.1 From 547ede342f1a22fbd56b57056a96202f0bd6f360 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 4 Oct 2023 03:01:29 +0200 Subject: python311Packages.hahomematic: 2023.10.0 -> 2023.10.4 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.0...2023.10.4 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.4 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 4bda4e40b6f..dba6e4be3c4 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.0"; + version = "2023.10.4"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-1G77gMeLXU6/WyqboxVg1gK9fM9n0golaAqLZ+eGs+8="; + hash = "sha256-SDkwKJVymWpl65TGVWpZL0KQhMdnjTLyOR+G3nyRWw0="; }; postPatch = '' -- cgit 1.4.1 From fb884fde6cf2c7c89fffde847508a7b0aee72d68 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 9 Oct 2023 08:28:06 +0200 Subject: python311Packages.hahomematic: 2023.10.4 -> 2023.10.6 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.4...2023.10.6 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.6 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index dba6e4be3c4..20cdce6f98c 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.4"; + version = "2023.10.6"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-SDkwKJVymWpl65TGVWpZL0KQhMdnjTLyOR+G3nyRWw0="; + hash = "sha256-uNf98q4x1usoYWvbDKt2yuTObyUjGgy7aK+VRrpM8wI="; }; postPatch = '' -- cgit 1.4.1 From 604b4c5e30b71a7e1bb71be94838337eb9598f4e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 11 Oct 2023 07:48:33 +0200 Subject: python311Packages.hahomematic: 2023.10.6 -> 2023.10.7 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.6...2023.10.7 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.7 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 20cdce6f98c..470fe43ce49 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.6"; + version = "2023.10.7"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-uNf98q4x1usoYWvbDKt2yuTObyUjGgy7aK+VRrpM8wI="; + hash = "sha256-m7jBL4qB8ZcGifd6F2/In8JrSMyFeEYKf52Y+y22yK0="; }; postPatch = '' -- cgit 1.4.1 From 3a02248e12d309d56cb846e327cd6429089ce5ab Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Oct 2023 14:21:04 +0200 Subject: python311Packages.hahomematic: 2023.10.7 -> 2023.10.8 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.7...2023.10.8 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.8 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 470fe43ce49..26426b67434 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.7"; + version = "2023.10.8"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-m7jBL4qB8ZcGifd6F2/In8JrSMyFeEYKf52Y+y22yK0="; + hash = "sha256-Co3tFYbPLVfceznM+slAxDN21osYNOk634LGxJkbbEY="; }; postPatch = '' -- cgit 1.4.1 From b22350a82134aaac288a4874d72496388d9db0f8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 13 Oct 2023 08:52:23 +0200 Subject: python311Packages.hahomematic: 2023.10.8 -> 2023.10.10 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.8...2023.10.10 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.10 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 26426b67434..1950447076f 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.8"; + version = "2023.10.10"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-Co3tFYbPLVfceznM+slAxDN21osYNOk634LGxJkbbEY="; + hash = "sha256-F7bfrfWRZLHEsYPcAFG9QG4vaUT69mvF4A2BN+cPd48="; }; postPatch = '' -- cgit 1.4.1 From 401b41b0b328be4fc7447a8a0a63d93daf3338e2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 14 Oct 2023 16:40:01 +0200 Subject: python311Packages.hahomematic: 2023.10.10 -> 2023.10.11 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.10...2023.10.11 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.11 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 1950447076f..df69f03510d 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.10"; + version = "2023.10.11"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-F7bfrfWRZLHEsYPcAFG9QG4vaUT69mvF4A2BN+cPd48="; + hash = "sha256-9vKXIvCLmdKS+DIR6OY7/gnDdqWZfmi9FOGpbqCMCqA="; }; postPatch = '' -- cgit 1.4.1 From 30afcc11bceb795c236b2c435c216bcf32d6182d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 16 Oct 2023 11:32:42 +0200 Subject: python311Packages.hahomematic: 2023.10.11 -> 2023.10.12 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.11...2023.10.12 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.12 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index df69f03510d..97a7a55b26a 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.11"; + version = "2023.10.12"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-9vKXIvCLmdKS+DIR6OY7/gnDdqWZfmi9FOGpbqCMCqA="; + hash = "sha256-mlZlaUcpVflz1mTiI0rIAOnJD5+NqXjsb1xp+wvoQvs="; }; postPatch = '' -- cgit 1.4.1 From 8489a01f7bfc8ccc844cf1042fbfc1e6871b3975 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 28 Oct 2023 22:36:12 +0200 Subject: python311Packages.hahomematic: 2023.10.12 -> 2023.10.13 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.12...2023.10.13 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.13 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 97a7a55b26a..77d57a0a500 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.12"; + version = "2023.10.13"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-mlZlaUcpVflz1mTiI0rIAOnJD5+NqXjsb1xp+wvoQvs="; + hash = "sha256-7zJhdFgEP/QSX78XMt+dxt0x7gUj011LHGi/+grPux0="; }; postPatch = '' -- cgit 1.4.1 From 5e6994ea37b7839977fa4d7de6722e0794b09594 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 31 Oct 2023 22:30:20 +0100 Subject: python311Packages.hahomematic: 2023.10.13 -> 2023.10.14 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.13...2023.10.14 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.10.14 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index 77d57a0a500..f77caa08bda 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.13"; + version = "2023.10.14"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-7zJhdFgEP/QSX78XMt+dxt0x7gUj011LHGi/+grPux0="; + hash = "sha256-P3JDXoxDfolgHN4dgHJqojWbWb88vbvgYhYv2B/myKY="; }; postPatch = '' -- cgit 1.4.1 From 2327d2ae6913fce91b5b4d7327d2f4607c62ee14 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 2 Nov 2023 08:02:35 +0100 Subject: python311Packages.hahomematic: 2023.10.14 -> 2023.11.0 Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.10.14...2023.11.0 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.11.0 --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/hahomematic') diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index f77caa08bda..653bf6a4b1e 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2023.10.14"; + version = "2023.11.0"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "danielperna84"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-P3JDXoxDfolgHN4dgHJqojWbWb88vbvgYhYv2B/myKY="; + hash = "sha256-QslmtmS7zrc0Vbq4XEzbx1XaeL0SuhNjyT3OPlCCf04="; }; postPatch = '' -- cgit 1.4.1