python-dubs: set pythonPath for wrapper

The python.buildEnv wrapper expects that all pythonPackages
have a pythonPath set, so we set to a dummy value here.
This commit is contained in:
Benno Fünfstück 2015-11-01 17:43:19 +01:00
parent 1061f4a9a3
commit a027470a69

View File

@ -15,6 +15,10 @@ if isPyPy then throw "dbus-python not supported for interpreter ${python.executa
doCheck = false; # https://bugs.freedesktop.org/show_bug.cgi?id=57140
# Set empty pythonPath, so that the package is recognized as a python package
# for python.buildEnv
pythonPath = [];
meta = {
description = "Python DBus bindings";
license = stdenv.lib.licenses.mit;