python3.pkgs.astroid: add wheel and pip dependencies (#247258)

This commit is contained in:
Theodore Ni 2023-08-11 23:09:27 -07:00 committed by GitHub
parent 620306122c
commit f06e634dc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
];