python310Packages.line_profiler: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-04 23:26:09 +01:00 committed by GitHub
parent e90452a534
commit 2e5c324f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,13 +14,14 @@
buildPythonPackage rec {
pname = "line-profiler";
version = "4.0.1";
format = "setuptools";
disabled = pythonOlder "3.6" || isPyPy;
src = fetchPypi {
pname = "line_profiler";
inherit version;
sha256 = "sha256-eXlt/5BUxtIZDnRz3umqXqkYqDcgYX5+goSzwBmneek=";
hash = "sha256-eXlt/5BUxtIZDnRz3umqXqkYqDcgYX5+goSzwBmneek=";
};
nativeBuildInputs = [
@ -54,6 +55,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Line-by-line profiler";
homepage = "https://github.com/pyutils/line_profiler";
changelog = "https://github.com/pyutils/line_profiler/blob/v${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};