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

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

python312Packages.cma: 3.3.0 -> 3.4.0
parents 1dafe6fa 6f309f77
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -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 = [ ];
  };