6 python.pkgs.buildPythonPackage rec {
7 pname = "memory-profiler";
12 pname = "memory_profiler";
14 sha256 = "sha256-Tltz14ZKHRKS+3agPoKj5475NNBoKKaY2dradtogZ7A=";
17 propagatedBuildInputs = with python.pkgs; [
18 psutil # needed to profile child processes
19 matplotlib # needed for plotting memory usage
23 description = "A module for monitoring memory usage of a process";
24 mainProgram = "mprof";
26 This is a python module for monitoring memory consumption of a process as
27 well as line-by-line analysis of memory consumption for python programs.
29 homepage = "https://pypi.python.org/pypi/memory_profiler";
30 license = licenses.bsd3;