blob: 6ded58a2132411159db33f4c3ad66f294e1d6e95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
python,
graphviz,
}:
buildPythonPackage rec {
pname = "gprof2dot";
version = "2025.04.14";
format = "setuptools";
src = fetchFromGitHub {
owner = "jrfonseca";
repo = "gprof2dot";
tag = version;
hash = "sha256-kX/DCXO/qwm1iF44gG7aBSUpG4Vf2Aer0zwrtq4YNHo=";
};
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ graphviz ]}" ];
# Needed so dot is on path of the test script
nativeCheckInputs = [ graphviz ];
checkPhase = ''
runHook preCheck
# if options not specified, will use unwrapped gprof2dot from original source
${python.interpreter} tests/test.py --python bash --gprof2dot $out/bin/gprof2dot
runHook postCheck
'';
meta = {
description = "Python script to convert the output from many profilers into a dot graph";
mainProgram = "gprof2dot";
homepage = "https://github.com/jrfonseca/gprof2dot";
changelog = "https://github.com/jrfonseca/gprof2dot/releases/tag/${src.tag}";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ pmiddend ];
};
}
|