Merge pull request #332598 from r-ryantm/auto-update/python312Packages.cma

python312Packages.cma: 3.3.0 -> 3.4.0
This commit is contained in:
Fabian Affolter 2024-08-07 17:40:39 +02:00 committed by GitHub
commit 075159cf59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,12 +5,13 @@
numpy,
python,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "cma";
version = "3.3.0";
format = "setuptools";
version = "3.4.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -18,10 +19,12 @@ buildPythonPackage rec {
owner = "CMA-ES";
repo = "pycma";
rev = "refs/tags/r${version}";
hash = "sha256-+UJI3hDVbDMfRF4bkwHED3eJCHzxS2hO4YPUzJqcoQI=";
hash = "sha256-wbAH0A5vpnnXqt7TTvLDPnCp6M3QjeCwD6l6LoTVu1w=";
};
propagatedBuildInputs = [ numpy ];
build-system = [ setuptools ];
dependencies = [ numpy ];
checkPhase = ''
# At least one doctest fails, thus only limited amount of files is tested
@ -33,6 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization";
homepage = "https://github.com/CMA-ES/pycma";
changelog = "https://github.com/CMA-ES/pycma/releases/tag/r${version}";
license = licenses.bsd3;
maintainers = [ ];
};