forked from mirrors/nixpkgs
pyprof2calltree: init at 1.4.3 (#34379)
This commit is contained in:
parent
499b3edb30
commit
6c744fc93d
|
@ -617,6 +617,7 @@
|
|||
sellout = "Greg Pfeil <greg@technomadic.org>";
|
||||
sepi = "Raffael Mancini <raffael@mancini.lu>";
|
||||
seppeljordan = "Sebastian Jordan <sebastian.jordan.mail@googlemail.com>";
|
||||
sfrijters = "Stefan Frijters <sfrijters@gmail.com>";
|
||||
shanemikel = "Shane Pearlman <shanemikel1@gmail.com>";
|
||||
shawndellysse = "Shawn Dellysse <sdellysse@gmail.com>";
|
||||
sheenobu = "Sheena Artrip <sheena.artrip@gmail.com>";
|
||||
|
|
22
pkgs/development/tools/profiling/pyprof2calltree/default.nix
Normal file
22
pkgs/development/tools/profiling/pyprof2calltree/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildPythonApplication, fetchFromGitHub }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "pyprof2calltree";
|
||||
version = "1.4.3";
|
||||
|
||||
# Fetch from GitHub because the PyPi packaged version does not
|
||||
# include all test files.
|
||||
src = fetchFromGitHub {
|
||||
owner = "pwaller";
|
||||
repo = "pyprof2calltree";
|
||||
rev = "v" + version;
|
||||
sha256 = "0i0a895zal193cpvzbv68fch606g4ik27rvzbby3vxk61zlxfqy5";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind";
|
||||
homepage = https://pypi.python.org/pypi/pyprof2calltree/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ sfrijters ];
|
||||
};
|
||||
}
|
|
@ -7792,6 +7792,8 @@ with pkgs;
|
|||
|
||||
pprof = callPackage ../development/tools/profiling/pprof { };
|
||||
|
||||
pyprof2calltree = pythonPackages.callPackage ../development/tools/profiling/pyprof2calltree { };
|
||||
|
||||
prelink = callPackage ../development/tools/misc/prelink { };
|
||||
|
||||
premake3 = callPackage ../development/tools/misc/premake/3.nix { };
|
||||
|
|
Loading…
Reference in a new issue