buildPythonPackage: always add interpreter to passthru

This commit is contained in:
Frederik Rietdijk 2020-03-15 13:53:59 +01:00
parent 254c72f560
commit 40c012bc85

View file

@ -78,6 +78,7 @@ let
# Use passthru in order to prevent rebuilds when possible.
passthru = (oldAttrs.passthru or {})// {
pythonModule = python;
inherit python;
pythonPath = [ ]; # Deprecated, for compatibility.
requiredPythonModules = requiredPythonModules drv.propagatedBuildInputs;
};
@ -92,6 +93,7 @@ let
# used by `nix-env`.
name = removePythonPrefix oldAttrs.name;
pythonModule = false;
inherit python;
};
});