Files
nixpkgs/pkgs/development/python-modules/cmaes/default.nix
2026-04-01 18:31:29 +00:00

47 lines
940 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
hypothesis,
numpy,
setuptools,
}:
buildPythonPackage rec {
pname = "cmaes";
version = "0.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "CyberAgentAILab";
repo = "cmaes";
tag = "v${version}";
hash = "sha256-sH5iJ9iSWLniIRzKsUC9ODlmifIuJoIAkOPpmAQ6Hrs=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [ "cmaes" ];
disabledTests = [
# Disable time-sensitive test
"test_cma_tell"
];
meta = {
description = "Python library for CMA evolution strategy";
homepage = "https://github.com/CyberAgentAILab/cmaes";
changelog = "https://github.com/CyberAgentAILab/cmaes/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}