From b237a2a781b67da95c4b5ecb7355585e76306f05 Mon Sep 17 00:00:00 2001 From: Tom Hunze Date: Sun, 22 Mar 2026 10:47:17 +0100 Subject: [PATCH] python3Packages.homepluscontrol: drop homepluscontrol has seen no upstream activity since June 2022 [1] and is broken with Python 3.14 [2]. [1] https://github.com/chemaaa/homepluscontrol [2] https://hydra.nixos.org/build/323959609/nixlog/1 --- .../homepluscontrol/default.nix | 43 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 45 deletions(-) delete mode 100644 pkgs/development/python-modules/homepluscontrol/default.nix diff --git a/pkgs/development/python-modules/homepluscontrol/default.nix b/pkgs/development/python-modules/homepluscontrol/default.nix deleted file mode 100644 index ee2b437d502b..000000000000 --- a/pkgs/development/python-modules/homepluscontrol/default.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ - lib, - aiohttp, - aioresponses, - buildPythonPackage, - fetchFromGitHub, - pyjwt, - pytestCheckHook, - yarl, -}: - -buildPythonPackage rec { - pname = "homepluscontrol"; - version = "0.1"; - format = "setuptools"; - - src = fetchFromGitHub { - owner = "chemaaa"; - repo = "homepluscontrol"; - rev = version; - hash = "sha256-COOGqfYiR4tueQHXuCvVxShrYS0XNltcW4mclbFWcfA="; - }; - - propagatedBuildInputs = [ - aiohttp - pyjwt - yarl - ]; - - nativeCheckInputs = [ - aioresponses - pytestCheckHook - ]; - - pythonImportsCheck = [ "homepluscontrol" ]; - - meta = { - description = "Python API to interact with the Legrand Eliot Home and Control"; - homepage = "https://github.com/chemaaa/homepluscontrol"; - license = with lib.licenses; [ gpl3Only ]; - maintainers = with lib.maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index d9d1dd335ef6..9d6d8c94d790 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -243,6 +243,7 @@ mapAliases { hijri-converter = hijridate; # added 2025-08-07 holistic-trace-analysis = throw "'holistic-trace-analysis' was removed because there is no such package on PyPI"; # added 2026-02-28 homeassistant-bring-api = throw "'homeassistant-bring-api' has been renamed to/replaced by 'bring-api'"; # Converted to throw 2025-10-29 + homepluscontrol = throw "'homepluscontrol' has been removed as it was unmaintained upstream"; # Added 2026-03-22 HTSeq = throw "'HTSeq' has been renamed to/replaced by 'htseq'"; # Converted to throw 2025-10-29 IMAPClient = throw "'IMAPClient' has been renamed to/replaced by 'imapclient'"; # Converted to throw 2025-10-29 inlinestyler = throw "inlinestyler has been removed because it is no longer maintained"; # added 2025-08-09 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fcf19791ac15..396c47c7b9c8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7108,8 +7108,6 @@ self: super: with self; { homematicip = callPackage ../development/python-modules/homematicip { }; - homepluscontrol = callPackage ../development/python-modules/homepluscontrol { }; - homf = callPackage ../development/python-modules/homf { }; hoomd-blue = callPackage ../development/python-modules/hoomd-blue { };