Skip to content

Commit

Permalink
pyprof2calltree: init at 1.4.3 (#34379)
Browse files Browse the repository at this point in the history
  • Loading branch information
SFrijters authored and FRidh committed Jan 30, 2018
1 parent 499b3ed commit 6c744fc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Expand Up @@ -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>";
Expand Down
22 changes: 22 additions & 0 deletions pkgs/development/tools/profiling/pyprof2calltree/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 6c744fc

Please sign in to comment.