From d9afddcd04bc716d1fee5141f8696a131f76442c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 13 May 2025 10:16:17 -0700 Subject: [PATCH] python313Packages.logi-circle: drop --- .../python-modules/logi-circle/default.nix | 47 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 49 deletions(-) delete mode 100644 pkgs/development/python-modules/logi-circle/default.nix diff --git a/pkgs/development/python-modules/logi-circle/default.nix b/pkgs/development/python-modules/logi-circle/default.nix deleted file mode 100644 index af73f77aadef..000000000000 --- a/pkgs/development/python-modules/logi-circle/default.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ - lib, - buildPythonPackage, - pythonOlder, - fetchFromGitHub, - aiohttp, - python-slugify, - pytz, - aresponses, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "logi-circle"; - version = "0.2.3"; - - disabled = pythonOlder "3.6"; - - format = "setuptools"; - - src = fetchFromGitHub { - owner = "evanjd"; - repo = "python-logi-circle"; - rev = "v${version}"; - hash = "sha256-Q+uoaimJjn6MiO3jXGYyZ6cS0tqI06Azkq1QbNq2FN8="; - }; - - propagatedBuildInputs = [ - aiohttp - python-slugify - pytz - ]; - - nativeCheckInputs = [ - aresponses - pytestCheckHook - ]; - - pythonImportsCheck = [ "logi_circle" ]; - - meta = { - description = "Python library to communicate with Logi Circle cameras"; - homepage = "https://github.com/evanjd/python-logi-circle"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 7359a14ca18e..0d10c56f2bd4 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -385,6 +385,7 @@ mapAliases ({ livestreamer-curses = throw "'livestreamer-curses' has been removed as it, and livestreamer itself are unmaintained."; # added 2023-11-14 lmcloud = pylamarzocco; # added 2024-11-26 localstack = throw "localstack was promoted to a top-level attribute"; # added 2025-02-21 + logi-circle = throw "logi-circle has been removed because the logi_circle integration was removed from Home Assistant"; # added 2025-05-13 logilab_astng = throw "logilab-astng has not been released since 2013 and is unmaintained"; # added 2022-11-29 logilab_common = logilab-common; # added 2022-11-21 loo-py = loopy; # added 2022-05-03 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b57b65b78a53..94603b5504b1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8277,8 +8277,6 @@ self: super: with self; { logging-journald = callPackage ../development/python-modules/logging-journald { }; - logi-circle = callPackage ../development/python-modules/logi-circle { }; - logical-unification = callPackage ../development/python-modules/logical-unification { }; logilab-common = callPackage ../development/python-modules/logilab/common.nix {