9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/r${version}";
20 hash = "sha256-+UJI3hDVbDMfRF4bkwHED3eJCHzxS2hO4YPUzJqcoQI=";
23 propagatedBuildInputs = [
28 # At least one doctest fails, thus only limited amount of files is tested
29 ${python.executable} -m cma.test interfaces.py purecma.py logger.py optimization_tools.py transformations.py
32 pythonImportsCheck = [
37 description = "Library for Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization";
38 homepage = "https://github.com/CMA-ES/pycma";
39 license = licenses.bsd3;
40 maintainers = with maintainers; [ ];