From a823d0d8ac5905001acef97c4bbe4334ea788c8f Mon Sep 17 00:00:00 2001 From: Gerhard Schwanzer Date: Mon, 13 Jul 2026 14:20:48 +0200 Subject: [PATCH] python3Packages.cleanit: fix build Relax the chardet dependency constraint for chardet 6. Assisted-by: pi coding agent / Mika (OpenAI gpt-5.6-sol) --- pkgs/development/python-modules/cleanit/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/cleanit/default.nix b/pkgs/development/python-modules/cleanit/default.nix index 8e75a5d3c140..cd7845b5750c 100644 --- a/pkgs/development/python-modules/cleanit/default.nix +++ b/pkgs/development/python-modules/cleanit/default.nix @@ -43,10 +43,7 @@ buildPythonPackage rec { pyyaml ]; - pythonRelaxDeps = [ - "click" - "jsonschema" - ]; + pythonRelaxDeps = [ "chardet" ]; nativeCheckInputs = [ pytestCheckHook ];