···7070 #
7171 # To evaluate this package with python3.withPackages, use:
7272 #
7373- # pythonEnv = python3.override {
7474- # packageOverrides = self: super: {
7575- # numpy = super.numpy_1;
7676- # };
7777- # }.withPackages(ps: {
7373+ # pythonEnv = pkgs.linien-gui.passthru.python.withPackages(ps: {
7874 # ps.linien-common
7975 # # Other packages...
8076 # });
8177 #
8278 # NOTE that the above Python environment will use Numpy 1 throughout all
8383- # packages wrapped there, and this may trigger rebuilds for dependencies
8484- # that depend on Numpy too. Be ready to also add more `packageOverrides` to
8585- # make sure these other dependencies do build with numpy_1.
7979+ # packages wrapped there (see expression in linien-gui), and this may
8080+ # trigger rebuilds for dependencies that depend on Numpy too. Be ready to
8181+ # also add more `packageOverrides` to make sure these other dependencies do
8282+ # build with numpy_1.
8383+ #
8484+ # Last NOTE: If you need more packageOverrides besides those provided in
8585+ # the `linien-gui` expression, beware of:
8686+ #
8787+ # - https://github.com/NixOS/nixpkgs/issues/44426
8688 broken = lib.versionAtLeast numpy.version "2";
8789 };
8890}