diff --git a/pkgs/development/python-modules/aiolip/default.nix b/pkgs/development/python-modules/aiolip/default.nix deleted file mode 100644 index 06c23bc68bea..000000000000 --- a/pkgs/development/python-modules/aiolip/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - pytestCheckHook, - setuptools, - pythonOlder, -}: - -buildPythonPackage rec { - pname = "aiolip"; - version = "1.1.6"; - pyproject = true; - disabled = pythonOlder "3.5"; - - src = fetchFromGitHub { - owner = "bdraco"; - repo = "aiolip"; - rev = version; - sha256 = "1bgmcl8q1p6f2xm3w2qylvla6vf6bd1p2hfwj4l8w6w0w04vr02g"; - }; - - build-system = [ setuptools ]; - - nativeCheckInputs = [ pytestCheckHook ]; - - postPatch = '' - substituteInPlace setup.py --replace-fail "'pytest-runner'," "" - ''; - - pythonImportsCheck = [ "aiolip" ]; - - meta = with lib; { - description = "Python module for the Lutron Integration Protocol"; - homepage = "https://github.com/bdraco/aiolip"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index e620ef44ca2d..ea960eb1d176 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -42,6 +42,7 @@ mapAliases ({ aiohttp-isal = throw "aiohttp-isal has been removed, as it has been archived and replace by aiohttp-fast-zlib"; # Added 2024-08-11 aiomysensors = throw "aiomysensors has been removed, as it was packaged for Home Assistant, which migrated to pymysensors."; # Added 2024-07-07 aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30 + aiolip = throw "aiolip has been removed because the upstream repository was archived in 2021"; # Added 2024-10-04 aionotify = throw "aionotify has been removed because is unmaintained and incompatible with python3.11."; # Added 2023-10-27 aiosenseme = throw "aiosenseme has been removed, because it does no longer work with the latest firmware and has become unmaintained"; # Added 2023-07-05 aioquic-mitmproxy = throw "aioquic-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-01-16 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index aa774786c31f..8a1d87bab362 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -315,8 +315,6 @@ self: super: with self; { aiolimiter = callPackage ../development/python-modules/aiolimiter { }; - aiolip = callPackage ../development/python-modules/aiolip { }; - aiolivisi = callPackage ../development/python-modules/aiolivisi { }; aiolyric = callPackage ../development/python-modules/aiolyric { };