pythonPackages.setuptools: fix for use in buildEnv

pythonPath needs to be set for it to be included in buildEnv.
This will also fix tox.
This commit is contained in:
Frederik Rietdijk 2016-07-02 23:43:51 +02:00
parent cbcb23dcf6
commit def310df45

View File

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