sage.with-env: remove unnecessary makeWrapper

Builds without it, all it seems to be doing is adding `/nix/store/6xfmwacsa9a7mzjjarknf9zg28q67ghq-sage-with-env-10.0/var/lib/sage/installed/make_shell_wrapper-hook`

Artturin 9594f53b cb81c2b2

+1 -2
+1 -2
pkgs/applications/science/math/sage/sage-with-env.nix
··· 1 { stdenv 2 , lib 3 - , makeWrapper 4 , sage-env 5 , blas 6 , lapack ··· 72 [] 73 ); 74 75 - allInputs = lib.remove null (nativeBuildInputs ++ buildInputs ++ pythonEnv.extraLibs ++ [ makeWrapper ]); 76 transitiveDeps = lib.unique (builtins.concatLists (map transitiveClosure allInputs )); 77 # fix differences between spkg and sage names 78 # (could patch sage instead, but this is more lightweight and also works for packages depending on sage)
··· 1 { stdenv 2 , lib 3 , sage-env 4 , blas 5 , lapack ··· 71 [] 72 ); 73 74 + allInputs = lib.remove null (nativeBuildInputs ++ buildInputs ++ pythonEnv.extraLibs); 75 transitiveDeps = lib.unique (builtins.concatLists (map transitiveClosure allInputs )); 76 # fix differences between spkg and sage names 77 # (could patch sage instead, but this is more lightweight and also works for packages depending on sage)