Merge pull request #252774 from r-ryantm/auto-update/python310Packages.cmaes

python310Packages.cmaes: 0.9.1 -> 0.10.0
This commit is contained in:
Fabian Affolter 2023-09-01 16:36:35 +02:00 committed by GitHub
commit 300db90414
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,15 +10,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "cmaes"; pname = "cmaes";
version = "0.9.1"; version = "0.10.0";
disabled = pythonOlder "3.7";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "CyberAgentAILab"; owner = "CyberAgentAILab";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-dd5vLT4Q0cI5ts0WgBpjPtOA81exGNjWSNHEiPggYbg="; hash = "sha256-1mXulG/yqNwKQKDFGBh8uxIYOPSsm8+PNp++CSswc50=";
}; };
nativeBuildInputs = [ setuptools ]; nativeBuildInputs = [ setuptools ];
@ -31,6 +32,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python library for CMA evolution strategy"; description = "Python library for CMA evolution strategy";
homepage = "https://github.com/CyberAgentAILab/cmaes"; homepage = "https://github.com/CyberAgentAILab/cmaes";
changelog = "https://github.com/CyberAgentAILab/cmaes/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.bcdarwin ]; maintainers = [ maintainers.bcdarwin ];
}; };