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) {};
|
||||
|
||||
pythonNamespacesHook = callPackage ({ makePythonHook, findutils }:
|
||||
pythonNamespacesHook = callPackage ({ makePythonHook, buildPackages }:
|
||||
makePythonHook {
|
||||
name = "python-namespaces-hook.sh";
|
||||
substitutions = {
|
||||
inherit pythonSitePackages findutils;
|
||||
inherit pythonSitePackages;
|
||||
inherit (buildPackages) findutils;
|
||||
};
|
||||
} ./python-namespaces-hook.sh) {};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue