mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-09 02:23:20 -05:00
12 lines
168 B
Nix
12 lines
168 B
Nix
{
|
|
toPythonModule,
|
|
pkgs,
|
|
python,
|
|
}:
|
|
toPythonModule (
|
|
pkgs.nlopt.override {
|
|
withPython = true;
|
|
python3 = python;
|
|
python3Packages = python.pkgs;
|
|
}
|
|
)
|