nixpkgs/pkgs/development/tools/profiling/pyprof2calltree/default.nix
R. RyanTM 9203ba5cea pyprof2calltree: 1.4.3 -> 1.4.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pyprof2calltree/versions
2018-10-26 13:32:41 -07:00

23 lines
670 B
Nix

{ lib, buildPythonApplication, fetchFromGitHub }:
buildPythonApplication rec {
pname = "pyprof2calltree";
version = "1.4.4";
# Fetch from GitHub because the PyPi packaged version does not
# include all test files.
src = fetchFromGitHub {
owner = "pwaller";
repo = "pyprof2calltree";
rev = "v" + version;
sha256 = "1vrip41ib7nmkwa8rjny1na1wyp7nvvgvm0h9bd21i262kbm4nqx";
};
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 ];
};
}