python.buildEnv: add extraOutputsToInstall attribute
This commit is contained in:
parent
864643ba27
commit
74c3cdd893
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, python, buildEnv, makeWrapper
|
{ stdenv, python, buildEnv, makeWrapper
|
||||||
, extraLibs ? []
|
, extraLibs ? []
|
||||||
|
, extraOutputsToInstall ? []
|
||||||
, postBuild ? ""
|
, postBuild ? ""
|
||||||
, ignoreCollisions ? false }:
|
, ignoreCollisions ? false }:
|
||||||
|
|
||||||
@ -12,7 +13,7 @@ let
|
|||||||
name = "${python.name}-env";
|
name = "${python.name}-env";
|
||||||
|
|
||||||
inherit paths;
|
inherit paths;
|
||||||
inherit ignoreCollisions;
|
inherit ignoreCollisions extraOutputsToInstall;
|
||||||
|
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
. "${makeWrapper}/nix-support/setup-hook"
|
. "${makeWrapper}/nix-support/setup-hook"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user