pyprof2calltree: init at 1.4.3 (#34379)

This commit is contained in:
Stefan Frijters 2018-01-30 10:09:36 +01:00 committed by Frederik Rietdijk
parent 499b3edb30
commit 6c744fc93d
3 changed files with 25 additions and 0 deletions

View file

@ -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>";

View 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 ];
};
}

View file

@ -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 { };