Starting a nix-shell as follows
nix-shell -p python39Packages.ipython python39Packages.ortools --run ipython
Followed by
import ortools
results in
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-0c521df57bb5> in <module>
----> 1 import ortools
ModuleNotFoundError: No module named 'ortools'
Any advice on how to approach this appreciated!