diff options
author | Ben Sima <ben@bsima.me> | 2025-06-04 14:27:49 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-06-13 11:19:37 -0400 |
commit | ec007bf2d3cef84da7b2d687807b223384177a05 (patch) | |
tree | 0df99691eb62358e6ba25c56bad4794906481cb0 /Omni/Bild/Python.nix | |
parent | 996d5957f7dd2bd9367d6f1a2b808865f866c040 (diff) |
Re-enable datasette, llm, and aider
I had to update nixos-unstable-small and nixos-24_11 and disable a bunch of
tests, and then re-compile like the whole world, but aider is actually working,
finally.
Diffstat (limited to 'Omni/Bild/Python.nix')
-rw-r--r-- | Omni/Bild/Python.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Omni/Bild/Python.nix b/Omni/Bild/Python.nix index 7ae9aa9..5d1705a 100644 --- a/Omni/Bild/Python.nix +++ b/Omni/Bild/Python.nix @@ -4,6 +4,9 @@ _self: super: { with pysuper.pkgs.python312Packages; let dontCheck = p: p.overridePythonAttrs (_: {doCheck = false;}); in { + aider-chat = pysuper.aider-chat.withOptional {withAll = false;}; + aiohttp = dontCheck pysuper.aiohttp; + anthropic = dontCheck pysuper.anthropic; anyio = dontCheck pysuper.anyio; interegular = callPackage ./Deps/interegular.nix {}; ipython = dontCheck pysuper.ipython; @@ -24,7 +27,9 @@ _self: super: { --replace-fail "0.0.0" "${version}" ''; }); + onnx = dontCheck pysuper.onnx; outlines = callPackage ./Deps/outlines.nix {}; + psycopg = dontCheck pysuper.psycopg; pydantic-ai = callPackage ./Deps/pydantic-ai.nix {}; pydantic-ai-slim = callPackage ./Deps/pydantic-ai-slim.nix {}; pydantic-graph = callPackage ./Deps/pydantic-graph.nix {}; |