Unverified Commit e8df7d32 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.cmaes: add changelog to meta

parent 17403b1e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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 ];
  };