From 6c2fb66f4c7c75c3a825d00aa3cfbd594206cb55 Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Thu, 28 Aug 2025 21:07:42 +0200 Subject: [PATCH] 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 --- .../development/python-modules/python-on-whales/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/python-modules/python-on-whales/default.nix b/pkgs/development/python-modules/python-on-whales/default.nix index 9b917d59b2ba..f7634cad9267 100644 --- a/pkgs/development/python-modules/python-on-whales/default.nix +++ b/pkgs/development/python-modules/python-on-whales/default.nix @@ -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