summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/python/setup-hook.nix
blob: 5c146d84d0f0ccc807b5e80445e6dd3b0182b037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  runCommand,
  replaceVars,
}:

sitePackages:

let
  hook = replaceVars ./setup-hook.sh {
    inherit sitePackages;
  };
in
runCommand "python-setup-hook.sh"
  {
    strictDeps = true;
    __structuredAttrs = true;
  }
  ''
    cp ${hook} $out
  ''