python311Packages.perfplot: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-07-01 21:40:55 +02:00 committed by GitHub
parent 4a2ae24601
commit 79a14b8a0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ buildPythonPackage rec {
pname = "perfplot";
version = "0.10.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
@ -38,11 +39,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "perfplot" ];
pythonImportsCheck = [
"perfplot"
];
meta = with lib; {
description = "Performance plots for Python code snippets";
homepage = "https://github.com/nschloe/perfplot";
changelog = "https://github.com/nschloe/perfplot/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
};