python310Packages.gprof2dot: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-09-23 12:38:21 +02:00 committed by GitHub
parent 06f188a5fa
commit 69e65647ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ buildPythonPackage rec {
owner = "jrfonseca";
repo = "gprof2dot";
rev = "refs/tags/${version}";
sha256 = "sha256-nIsBO6KTyG2VZZRXrkU/T/a9Ki1x6hda5Vv3rZv/mJM=";
hash = "sha256-nIsBO6KTyG2VZZRXrkU/T/a9Ki1x6hda5Vv3rZv/mJM=";
};
makeWrapperArgs = [
@ -22,7 +22,9 @@ buildPythonPackage rec {
];
# Needed so dot is on path of the test script
nativeCheckInputs = [ graphviz ];
nativeCheckInputs = [
graphviz
];
checkPhase = ''
runHook preCheck
@ -34,8 +36,9 @@ buildPythonPackage rec {
'';
meta = with lib; {
homepage = "https://github.com/jrfonseca/gprof2dot";
description = "Python script to convert the output from many profilers into a dot graph";
homepage = "https://github.com/jrfonseca/gprof2dot";
changelog = "https://github.com/jrfonseca/gprof2dot/releases/tag/${version}";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ pmiddend ];
};