diff --git a/pkgs/development/python-modules/systembridge/default.nix b/pkgs/development/python-modules/systembridge/default.nix deleted file mode 100644 index 3af2cb7c4964..000000000000 --- a/pkgs/development/python-modules/systembridge/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ - lib, - aiohttp, - buildPythonPackage, - fetchFromGitHub, - websockets, -}: - -buildPythonPackage rec { - pname = "systembridge"; - version = "2.3.1"; - format = "setuptools"; - - src = fetchFromGitHub { - owner = "timmo001"; - repo = "system-bridge-connector-py"; - rev = "v${version}"; - hash = "sha256-Ts8zPRK6S5iLnl19Y/Uz0YAh6hDeVRNBY6HsvLwdUFw="; - }; - - propagatedBuildInputs = [ - aiohttp - websockets - ]; - - # Project has no tests - doCheck = false; - - pythonImportsCheck = [ "systembridge" ]; - - meta = with lib; { - description = "Python module for connecting to System Bridge"; - homepage = "https://github.com/timmo001/system-bridge-connector-py"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index a6973d6b0059..610a514024d7 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -452,6 +452,7 @@ mapAliases { supervise_api = throw "'supervise_api' has been renamed to/replaced by 'supervise-api'"; # Converted to throw 2025-10-29 swh-perfecthash = throw "'swh-perfecthash' has been renamed to/replaced by 'swh-shard'"; # added 2025-11-13 synologydsm-api = throw "'synologydsm-api' has been renamed to/replaced by 'py-synologydsm-api'"; # Converted to throw 2025-10-29 + systembridge = throw "systembridge has been removed because it is unmaintained upstream"; # Added 2025-11-23 systemd = throw "systemd was removed because it was misnamed; use systemd-python instead"; # added 2025-11-09 sysv_ipc = throw "'sysv_ipc' has been renamed to/replaced by 'sysv-ipc'"; # Converted to throw 2025-10-29 tensorflow-bin_2 = throw "'tensorflow-bin_2' has been renamed to/replaced by 'tensorflow-bin'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dbe562560264..0a4223d2d2eb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18233,8 +18233,6 @@ self: super: with self; { sysrsync = callPackage ../development/python-modules/sysrsync { }; - systembridge = callPackage ../development/python-modules/systembridge { }; - systembridgeconnector = callPackage ../development/python-modules/systembridgeconnector { }; systembridgemodels = callPackage ../development/python-modules/systembridgemodels { };