python3Packages.gepa: init at 0.1.3

This commit is contained in:
Johan Herland
2026-07-20 10:36:17 +02:00
parent 362f7c3865
commit 151e1e250b
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "gepa";
version = "0.1.3";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "gepa-ai";
repo = "gepa";
tag = "v${finalAttrs.version}";
hash = "sha256-9gxOfjiOK1BP+YiAY4SufohMyPaUM5c7jJfJsGnRgSs=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "gepa" ];
# test suite requires network access
doCheck = false;
meta = {
description = "A framework for optimizing textual system components using LLM-based reflection and Pareto-efficient evolutionary search";
homepage = "https://github.com/gepa-ai/gepa";
changelog = "https://github.com/gepa-ai/gepa/releases/tag/v${finalAttrs.version}";
maintainers = with lib.maintainers; [ jherland ];
license = lib.licenses.mit;
};
})
+2
View File
@@ -6668,6 +6668,8 @@ self: super: with self; {
geotorch = callPackage ../development/python-modules/geotorch { };
gepa = callPackage ../development/python-modules/gepa { };
gepetto-gui = toPythonModule (gepetto-viewer.withPlugins [ gepetto-viewer-corba ]);
gepetto-viewer = toPythonModule (pkgs.gepetto-viewer.override { python3Packages = self; });