From 5e346e3fb4b0e31d35f1dff5027c9539dc7ac4e6 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Mon, 5 May 2025 12:32:09 +0200 Subject: [PATCH] python3Packages.pyprof2calltree: clean up meta --- .../python-modules/pyprof2calltree/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pyprof2calltree/default.nix b/pkgs/development/python-modules/pyprof2calltree/default.nix index bcc3f5e82dfb..5fabbfe67cb5 100644 --- a/pkgs/development/python-modules/pyprof2calltree/default.nix +++ b/pkgs/development/python-modules/pyprof2calltree/default.nix @@ -21,12 +21,12 @@ buildPythonPackage rec { build-system = [ setuptools ]; - meta = with lib; { + meta = { description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind"; mainProgram = "pyprof2calltree"; homepage = "https://github.com/pwaller/pyprof2calltree"; - changelog = "https://github.com/pwaller/pyprof2calltree/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ sfrijters ]; + changelog = "https://github.com/pwaller/pyprof2calltree/releases/tag/${src.tag}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sfrijters ]; }; }