mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python3Packages.pythonNamespacesHook: use findutils from buildPackages (#249864)
This commit is contained in:
parent
1adb31d999
commit
e19e2222d7
1 changed files with 3 additions and 2 deletions
|
@ -107,11 +107,12 @@ in {
|
||||||
};
|
};
|
||||||
} ./python-imports-check-hook.sh) {};
|
} ./python-imports-check-hook.sh) {};
|
||||||
|
|
||||||
pythonNamespacesHook = callPackage ({ makePythonHook, findutils }:
|
pythonNamespacesHook = callPackage ({ makePythonHook, buildPackages }:
|
||||||
makePythonHook {
|
makePythonHook {
|
||||||
name = "python-namespaces-hook.sh";
|
name = "python-namespaces-hook.sh";
|
||||||
substitutions = {
|
substitutions = {
|
||||||
inherit pythonSitePackages findutils;
|
inherit pythonSitePackages;
|
||||||
|
inherit (buildPackages) findutils;
|
||||||
};
|
};
|
||||||
} ./python-namespaces-hook.sh) {};
|
} ./python-namespaces-hook.sh) {};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue