mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
Merge pull request #332598 from r-ryantm/auto-update/python312Packages.cma
python312Packages.cma: 3.3.0 -> 3.4.0
This commit is contained in:
commit
075159cf59
@ -5,12 +5,13 @@
|
|||||||
numpy,
|
numpy,
|
||||||
python,
|
python,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
|
setuptools,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cma";
|
pname = "cma";
|
||||||
version = "3.3.0";
|
version = "3.4.0";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
@ -18,10 +19,12 @@ buildPythonPackage rec {
|
|||||||
owner = "CMA-ES";
|
owner = "CMA-ES";
|
||||||
repo = "pycma";
|
repo = "pycma";
|
||||||
rev = "refs/tags/r${version}";
|
rev = "refs/tags/r${version}";
|
||||||
hash = "sha256-+UJI3hDVbDMfRF4bkwHED3eJCHzxS2hO4YPUzJqcoQI=";
|
hash = "sha256-wbAH0A5vpnnXqt7TTvLDPnCp6M3QjeCwD6l6LoTVu1w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [ numpy ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
# At least one doctest fails, thus only limited amount of files is tested
|
# At least one doctest fails, thus only limited amount of files is tested
|
||||||
@ -33,6 +36,7 @@ buildPythonPackage rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization";
|
description = "Library for Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization";
|
||||||
homepage = "https://github.com/CMA-ES/pycma";
|
homepage = "https://github.com/CMA-ES/pycma";
|
||||||
|
changelog = "https://github.com/CMA-ES/pycma/releases/tag/r${version}";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user