From b8c70d6f18afa014d22ec98ef7ca34f13ef677eb Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Fri, 7 Aug 2026 08:57:06 +0200 Subject: [PATCH] python3Packages.testtools: Drop setuptools dependency setuptools isn't used, so drop it. Signed-off-by: Felix Singer --- pkgs/development/python-modules/testtools/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/python-modules/testtools/default.nix b/pkgs/development/python-modules/testtools/default.nix index 0ea71bcbe6af..0ceb7f1b7db5 100644 --- a/pkgs/development/python-modules/testtools/default.nix +++ b/pkgs/development/python-modules/testtools/default.nix @@ -7,9 +7,6 @@ # build-system hatchling, hatch-vcs, - - # dependencies - setuptools, }: buildPythonPackage rec { @@ -29,8 +26,6 @@ buildPythonPackage rec { pythonRemoveDeps = [ "fixtures" ]; - propagatedBuildInputs = lib.optionals (pythonAtLeast "3.12") [ setuptools ]; - # testscenarios has a circular dependency on testtools doCheck = false;