12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 owner = "CyberAgentAILab";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-u2CgU9n8N9AMxfMBbDbnYzBMdl/IGOLTxOeh8RlnB/Y=";
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [ numpy ];
35 pythonImportsCheck = [ "cmaes" ];
38 # Disable time-sensitive test
43 description = "Python library for CMA evolution strategy";
44 homepage = "https://github.com/CyberAgentAILab/cmaes";
45 changelog = "https://github.com/CyberAgentAILab/cmaes/releases/tag/v${version}";
46 license = licenses.mit;
47 maintainers = with maintainers; [ bcdarwin ];