From 38694ab5659efa3f4887f5f8a336802d74b8e953 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 30 Dec 2025 21:45:05 +0000 Subject: [PATCH] python3Packages.chalice: cleanup --- .../python-modules/chalice/default.nix | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/chalice/default.nix b/pkgs/development/python-modules/chalice/default.nix index bf543b4d6eac..9ce790fb95b4 100644 --- a/pkgs/development/python-modules/chalice/default.nix +++ b/pkgs/development/python-modules/chalice/default.nix @@ -1,24 +1,25 @@ { lib, - attrs, - botocore, buildPythonPackage, - click, fetchFromGitHub, - hypothesis, + + # build-system + setuptools, + + # dependencies + botocore, + click, inquirer, jmespath, - mypy-extensions, pip, - pytestCheckHook, pyyaml, - requests, - setuptools, six, - typing-extensions, - watchdog, + + # tests + hypothesis, + pytestCheckHook, + requests, websocket-client, - wheel, }: buildPythonPackage rec { @@ -42,9 +43,8 @@ buildPythonPackage rec { jmespath pip pyyaml - setuptools + # setuptools six - wheel ]; nativeCheckInputs = [