diff --git a/pkgs/development/python-modules/linear-garage-door/default.nix b/pkgs/development/python-modules/linear-garage-door/default.nix deleted file mode 100644 index d24583f86ca8..000000000000 --- a/pkgs/development/python-modules/linear-garage-door/default.nix +++ /dev/null @@ -1,48 +0,0 @@ -{ - lib, - aiohttp, - buildPythonPackage, - dnspython, - fetchFromGitHub, - poetry-core, - pythonOlder, - tenacity, -}: - -buildPythonPackage rec { - pname = "linear-garage-door"; - version = "0.2.10"; - pyproject = true; - - disabled = pythonOlder "3.8"; - - src = fetchFromGitHub { - owner = "IceBotYT"; - repo = "linear-garage-door"; - tag = version; - hash = "sha256-ibOCqy7krIVC7N75SwEyUII3Tknb60nwA+zGbjOENv4="; - }; - - build-system = [ poetry-core ]; - - pythonRelaxDeps = [ "tenacity" ]; - - dependencies = [ - aiohttp - dnspython - tenacity - ]; - - # Module doesn't have tests - doCheck = false; - - pythonImportsCheck = [ "linear_garage_door" ]; - - meta = with lib; { - description = "Control Linear Garage Doors with Python"; - homepage = "https://github.com/IceBotYT/linear-garage-door"; - changelog = "https://github.com/IceBotYT/linear-garage-door/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index fcf56ad7af20..c24b98ba7493 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -243,6 +243,7 @@ mapAliases { ledger_agent = throw "'ledger_agent' has been renamed to/replaced by 'ledger-agent'"; # Converted to throw 2025-10-29 libpyfoscam = throw "libpyfoscam was removed because Home Assistant switched to libpyfoscamcgi"; # added 2025-07-03 line_profiler = throw "'line_profiler' has been renamed to/replaced by 'line-profiler'"; # Converted to throw 2025-10-29 + linear-garage-door = throw "'linear-garage-door' has been superseded by 'nice-go'"; # Added 2025-11-16 linear_operator = throw "'linear_operator' has been renamed to/replaced by 'linear-operator'"; # Converted to throw 2025-10-29 lmcloud = throw "'lmcloud' has been renamed to/replaced by 'pylamarzocco'"; # Converted to throw 2025-10-29 logilab_common = throw "'logilab_common' has been renamed to/replaced by 'logilab-common'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cfacc63e518b..8525e85ad1f7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8576,8 +8576,6 @@ self: super: with self; { line-profiler = callPackage ../development/python-modules/line-profiler { }; - linear-garage-door = callPackage ../development/python-modules/linear-garage-door { }; - linear-operator = callPackage ../development/python-modules/linear-operator { }; linearmodels = callPackage ../development/python-modules/linearmodels { };