From 25f0dabf90b26992a2c5aca7c51ac53f936bcbb7 Mon Sep 17 00:00:00 2001 From: Jon Banafato Date: Fri, 29 Nov 2019 12:01:02 -0500 Subject: [PATCH] python: pip: missing setuptools dependency pip commands that deal with source distributions require setuptools. This change unbreaks those commands. --- pkgs/development/python-modules/pip/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/pip/default.nix b/pkgs/development/python-modules/pip/default.nix index e1af281b9e91..fe45a2fad4d5 100644 --- a/pkgs/development/python-modules/pip/default.nix +++ b/pkgs/development/python-modules/pip/default.nix @@ -26,6 +26,7 @@ buildPythonPackage rec { }; nativeBuildInputs = [ bootstrapped-pip ]; + propagatedBuildInputs = [ setuptools ]; # pip detects that we already have bootstrapped_pip "installed", so we need # to force it a little.