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

Grimmauld 6c2fb66f 559268ac

Changed files
-6
pkgs
development
python-modules
python-on-whales
-6
pkgs/development/python-modules/python-on-whales/default.nix
···
# dependencies
pydantic,
-
requests,
-
tqdm,
-
typer,
}:
buildPythonPackage rec {
···
dependencies = [
pydantic
-
requests
-
tqdm
-
typer
];
doCheck = false; # majority of tests require Docker and/or network access
···
# dependencies
pydantic,
}:
buildPythonPackage rec {
···
dependencies = [
pydantic
];
doCheck = false; # majority of tests require Docker and/or network access