From def310df459f649a4ce2df8b7ba19aa8e4d5af58 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 2 Jul 2016 23:43:51 +0200 Subject: [PATCH] pythonPackages.setuptools: fix for use in buildEnv pythonPath needs to be set for it to be included in buildEnv. This will also fix tox. --- pkgs/development/python-modules/setuptools/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index f40974263fa..d01bc684f69 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -21,6 +21,8 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; + pythonPath = []; + meta = with stdenv.lib; { description = "Utilities to facilitate the installation of Python packages"; homepage = http://pypi.python.org/pypi/setuptools;