pythonPackages.nlopt: respect current python interpreter (#448382)

This commit is contained in:
Masum Reza
2025-10-06 15:59:08 +00:00
committed by GitHub
@@ -1,5 +1,12 @@
{
toPythonModule,
pkgs,
python,
}:
toPythonModule (pkgs.nlopt.override { withPython = true; })
toPythonModule (
pkgs.nlopt.override {
withPython = true;
python3 = python;
python3Packages = python.pkgs;
}
)