Files
nixpkgs/pkgs/development/interpreters/python/setup-hook.nix
T

20 lines
222 B
Nix

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