python3Packages.python-on-whales: remove unused dependencies

Since 2024-10-13, `typer`, `tqdm`, and `requests` are no longer required [1].
Removing them reduces the closure size of python-on-whales.
This drops most of tkinter's reverse dependencies,
and may even make it not be a mass-rebuild.

[1] https://github.com/gabrieldemarmiesse/python-on-whales/pull/633
This commit is contained in:
Grimmauld
2025-08-28 21:07:42 +02:00
parent 559268ace9
commit 6c2fb66f4c
@@ -8,9 +8,6 @@
# dependencies
pydantic,
requests,
tqdm,
typer,
}:
buildPythonPackage rec {
@@ -29,9 +26,6 @@ buildPythonPackage rec {
dependencies = [
pydantic
requests
tqdm
typer
];
doCheck = false; # majority of tests require Docker and/or network access