From f06e634dc53b037ebfa570d71f100b076092332f Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Fri, 11 Aug 2023 23:09:27 -0700 Subject: [PATCH] python3.pkgs.astroid: add wheel and pip dependencies (#247258) --- pkgs/development/python-modules/astroid/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix index 5e5f9e22fb40..5fd0a5281b2c 100644 --- a/pkgs/development/python-modules/astroid/default.nix +++ b/pkgs/development/python-modules/astroid/default.nix @@ -5,8 +5,10 @@ , isPyPy , lazy-object-proxy , setuptools +, wheel , typing-extensions , typed-ast +, pip , pylint , pytestCheckHook , wrapt @@ -28,6 +30,7 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools + wheel ]; propagatedBuildInputs = [ @@ -40,6 +43,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + pip pytestCheckHook typing-extensions ];