python310Packages.cmaes: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-09-01 15:17:14 +02:00
committed by GitHub
parent 17403b1ef1
commit e8df7d3247
@@ -11,9 +11,10 @@
buildPythonPackage rec {
pname = "cmaes";
version = "0.10.0";
disabled = pythonOlder "3.7";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "CyberAgentAILab";
repo = pname;
@@ -31,6 +32,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library for CMA evolution strategy";
homepage = "https://github.com/CyberAgentAILab/cmaes";
changelog = "https://github.com/CyberAgentAILab/cmaes/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ maintainers.bcdarwin ];
};