Unverified Commit 3284db58 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.logi-circle: drop (#406801)

parents f5960d8f d9afddcd
Loading
Loading
Loading
Loading
+0 −47
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -8287,8 +8287,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 {