diff --git a/pkgs/development/python-modules/zeversolarlocal/default.nix b/pkgs/development/python-modules/zeversolarlocal/default.nix deleted file mode 100644 index eb251397e5a8..000000000000 --- a/pkgs/development/python-modules/zeversolarlocal/default.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - fetchpatch, - flit-core, - dos2unix, - httpx, - pytest-asyncio, - pytest-cov-stub, - pytest-mock, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "zeversolarlocal"; - version = "1.1.0"; - pyproject = true; - - src = fetchPypi { - inherit pname version; - hash = "sha256-ExZy5k5RE7k+D0lGmuIkGWrWQ+m24K2oqbUEg4BAVuY="; - }; - - build-system = [ - flit-core - dos2unix - ]; - - dependencies = [ httpx ]; - - nativeCheckInputs = [ - pytest-asyncio - pytest-cov-stub - pytest-mock - pytestCheckHook - ]; - - # the patch below won't apply unless we fix the line endings - prePatch = '' - dos2unix pyproject.toml - ''; - - patches = [ - # Raise the flit-core limit - # https://github.com/sander76/zeversolarlocal/pull/4 - (fetchpatch { - url = "https://github.com/sander76/zeversolarlocal/commit/bff072ea046de07eced77bc79eb8e90dfef1f53f.patch"; - hash = "sha256-tzFCwPzhAfwVfN5mLY/DMwRv7zGzx3ScBe+kKzkYcvo="; - }) - ]; - - disabledTests = [ - # Test requires network access - "test_httpx_timeout" - ]; - - pythonImportsCheck = [ "zeversolarlocal" ]; - - meta = { - description = "Python module to interact with Zeversolar inverters"; - homepage = "https://github.com/sander76/zeversolarlocal"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index f858cb4d6982..7035ea22f93a 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -545,6 +545,7 @@ mapAliases { zc-buildout221 = throw "'zc-buildout221' has been renamed to/replaced by 'zc-buildout'"; # Converted to throw 2025-10-29 zc_lockfile = throw "'zc_lockfile' has been renamed to/replaced by 'zc-lockfile'"; # Converted to throw 2025-10-29 zetup = "'zetup' has been removed because it is unmaintained"; # Added 2026-01-19 + zeversolarlocal = throw "'zeversolarlocal' has been removed because it is unmaintained"; # Added 2026-01-28 zope_component = throw "'zope_component' has been renamed to/replaced by 'zope-component'"; # Converted to throw 2025-10-29 zope_configuration = throw "'zope_configuration' has been renamed to/replaced by 'zope-configuration'"; # Converted to throw 2025-10-29 zope_contenttype = throw "'zope_contenttype' has been renamed to/replaced by 'zope-contenttype'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8e7c3ab75995..8cce9f803536 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21186,8 +21186,6 @@ self: super: with self; { zeversolar = callPackage ../development/python-modules/zeversolar { }; - zeversolarlocal = callPackage ../development/python-modules/zeversolarlocal { }; - zfec = callPackage ../development/python-modules/zfec { }; zha = callPackage ../development/python-modules/zha { };