python313Packages.hahomematic: remove

hahomematic has been superseded by aiohomematic
This commit is contained in:
Fabian Affolter 2025-08-16 02:46:45 +02:00
parent 9b0a3d1e0a
commit 4a349828d7
3 changed files with 1 additions and 75 deletions

View File

@ -1,73 +0,0 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
freezegun,
orjson,
pydevccu,
pytest-aiohttp,
pytest-socket,
pytestCheckHook,
python-slugify,
pythonOlder,
setuptools,
voluptuous,
}:
buildPythonPackage rec {
pname = "hahomematic";
version = "2025.8.3";
pyproject = true;
disabled = pythonOlder "3.13";
src = fetchFromGitHub {
owner = "SukramJ";
repo = "hahomematic";
tag = version;
hash = "sha256-BztVWvDUDXTgC1uha7grD4hcWJqKcua4UVgy3KivWSI=";
};
__darwinAllowLocalNetworking = true;
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools==80.9.0" "setuptools" \
'';
build-system = [ setuptools ];
dependencies = [
aiohttp
orjson
python-slugify
voluptuous
];
nativeCheckInputs = [
freezegun
pydevccu
pytest-aiohttp
pytest-socket
pytestCheckHook
];
disabledTests = [
# AssertionError: assert 548 == 555
"test_central_full"
];
pythonImportsCheck = [ "hahomematic" ];
meta = with lib; {
description = "Python module to interact with HomeMatic devices";
homepage = "https://github.com/SukramJ/hahomematic";
changelog = "https://github.com/SukramJ/hahomematic/blob/${src.tag}/changelog.md";
license = licenses.mit;
maintainers = with maintainers; [
dotlambda
fab
];
};
}

View File

@ -323,6 +323,7 @@ mapAliases ({
guzzle_sphinx_theme = guzzle-sphinx-theme; # added 2023-10-16
ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06
HAP-python = hap-python; # added 2021-06-01
hahomematic = throw "hahomematic has been superseded by aiohomematic"; # added 2025-08-16
hangups = throw "hangups was removed because Google Hangouts has been shut down"; # added 2023-02-13
hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07
hcs_utils = hcs-utils; # added 2024-01-06

View File

@ -6427,8 +6427,6 @@ self: super: with self; {
hacking = callPackage ../development/python-modules/hacking { };
hahomematic = callPackage ../development/python-modules/hahomematic { };
hakuin = callPackage ../development/python-modules/hakuin { };
halide =