pythonPackages.runsnakerun: add performance/memory GUI profiler for python
This commit is contained in:
parent
ca9097335d
commit
b598f6af59
|
@ -57,4 +57,8 @@ stdenv.mkDerivation rec {
|
||||||
passthru = {inherit gtk compat24 compat26 unicode;};
|
passthru = {inherit gtk compat24 compat26 unicode;};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,4 +55,8 @@ stdenv.mkDerivation {
|
||||||
passthru = {inherit gtk compat24 compat26 unicode;};
|
passthru = {inherit gtk compat24 compat26 unicode;};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,4 +55,8 @@ stdenv.mkDerivation {
|
||||||
passthru = {inherit gtk compat24 compat26 unicode;};
|
passthru = {inherit gtk compat24 compat26 unicode;};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,4 +17,8 @@ if isPyPy then throw "wxPython-${version} not supported for interpreter ${python
|
||||||
buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];
|
buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];
|
||||||
|
|
||||||
passthru = { inherit wxGTK; };
|
passthru = { inherit wxGTK; };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,4 +22,8 @@ if isPyPy then throw "wxPython-${version} not supported for interpreter ${python
|
||||||
inherit openglSupport;
|
inherit openglSupport;
|
||||||
|
|
||||||
passthru = { inherit wxGTK openglSupport; };
|
passthru = { inherit wxGTK openglSupport; };
|
||||||
}
|
|
||||||
|
meta = {
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8107,6 +8107,40 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
squaremap = buildPythonPackage rec {
|
||||||
|
name = "squaremap-1.0.4";
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/S/SquareMap/SquareMap-1.0.4.tar.gz";
|
||||||
|
md5 = "e36a453baddb97c19af6f79d5ba51f38";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Hierarchic visualization control for wxPython";
|
||||||
|
homepage = https://launchpad.net/squaremap;
|
||||||
|
license = licenses.bsd;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
runsnakerun = buildPythonPackage rec {
|
||||||
|
name = "runsnakerun-2.0.4";
|
||||||
|
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/R/RunSnakeRun/RunSnakeRun-2.0.4.tar.gz";
|
||||||
|
md5 = "3220b5b89994baee70b1c24d7e42a306";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ self.squaremap self.wxPython28 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "GUI Viewer for Python profiling runs";
|
||||||
|
homepage = http://www.vrplumber.com/programming/runsnakerun/;
|
||||||
|
license = licenses.bsd;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
rtslib_fb = buildPythonPackage rec {
|
rtslib_fb = buildPythonPackage rec {
|
||||||
version = "2.1.fb43";
|
version = "2.1.fb43";
|
||||||
name = "rtslib-fb-${version}";
|
name = "rtslib-fb-${version}";
|
||||||
|
|
Loading…
Reference in New Issue