pythonPackages.nlopt: respect current python interpreter

This commit is contained in:
Mateusz Kubica
2025-10-04 01:13:04 +01:00
parent 8525303361
commit 74ac950104
@@ -1,5 +1,12 @@
{
toPythonModule,
pkgs,
python,
}:
toPythonModule (pkgs.nlopt.override { withPython = true; })
toPythonModule (
pkgs.nlopt.override {
withPython = true;
python3 = python;
python3Packages = python.pkgs;
}
)