gprof2dot: do not use pypy

- The package does not seem to function with `pypy` (#33997)
- Our default interpreter should be used. If one wants extra performance
(e.g. using PyPy) they can override or modify the expression however
they want, but not in Nixpkgs.
This commit is contained in:
Frederik Rietdijk 2018-01-18 09:38:56 +01:00
parent 43909be63c
commit fbaf5fd677

View File

@ -2481,10 +2481,7 @@ with pkgs;
callPackage ../tools/misc/graylog/plugins.nix { }
);
gprof2dot = callPackage ../development/tools/profiling/gprof2dot {
# Using pypy provides significant performance improvements (~2x)
pythonPackages = pypyPackages;
};
gprof2dot = callPackage ../development/tools/profiling/gprof2dot { };
graphviz = callPackage ../tools/graphics/graphviz {
inherit (darwin.apple_sdk.frameworks) ApplicationServices;