fix: build hermes-agent 0.20.0 stable candidate

- relax setuptools==83.0.0 pin (nixpkgs ships 80.10.1) in postPatch
- set HERMES_NIX_BUILD=1: upstream setup.py refuses wheel builds without it
- disable slack-bolt 1.27.0 tests: crash at interpreter shutdown in sandbox
- package nemo-relay 0.6.0 from its manylinux abi3 wheel (not in nixpkgs)
This commit is contained in:
hermes 2026-08-13 05:44:58 +00:00
commit 32801e3c36

View file

@ -4,6 +4,7 @@
python312, python312,
fetchFromGitHub, fetchFromGitHub,
fetchPypi, fetchPypi,
fetchurl,
makeWrapper, makeWrapper,
nodejs_22, nodejs_22,
ripgrep, ripgrep,
@ -34,6 +35,11 @@ let
# apscheduler processpool tests fail in the nix sandbox (signal handling) # apscheduler processpool tests fail in the nix sandbox (signal handling)
doCheck = false; doCheck = false;
}); });
slack-bolt = prev.slack-bolt.overridePythonAttrs (_old: {
# slack-bolt 1.27.0 tests crash at interpreter shutdown in the nix
# sandbox (_enter_buffered_busy: could not acquire lock for stderr)
doCheck = false;
});
tenacity = prev.tenacity.overridePythonAttrs (_old: rec { tenacity = prev.tenacity.overridePythonAttrs (_old: rec {
# hermes-agent >=0.4.0 requires tenacity >=9.1.4; nixpkgs has 9.1.2 # hermes-agent >=0.4.0 requires tenacity >=9.1.4; nixpkgs has 9.1.2
version = "9.1.4"; version = "9.1.4";
@ -135,6 +141,21 @@ let
pythonImportsCheck = [ "parallel" ]; pythonImportsCheck = [ "parallel" ];
}; };
nemo-relay = pythonPackages.buildPythonPackage rec {
pname = "nemo-relay";
version = "0.6.0";
# Upstream 0.6.x ships only compiled abi3 wheels on PyPI (no buildable
# sdist for the Nix sandbox); the prebuilt manylinux wheel has no base
# runtime dependencies.
format = "wheel";
src = fetchurl {
url = "https://files.pythonhosted.org/packages/a3/f4/d1dfaed022da0f6f14765a122867f976a69cc520fe1faaf99757f5719d1f/nemo_relay-0.6.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";
hash = "sha256-hJ2qnkUVisWB5UUG4PzHok9VfR7Qbb3AdPXeegA5PLw=";
};
doCheck = false;
pythonImportsCheck = [ "nemo_relay" ];
};
agent-client-protocol = pythonPackages.buildPythonPackage rec { agent-client-protocol = pythonPackages.buildPythonPackage rec {
pname = "agent-client-protocol"; pname = "agent-client-protocol";
version = "0.8.1"; version = "0.8.1";
@ -171,6 +192,10 @@ pythonPackages.buildPythonApplication {
build-system = [ pythonPackages.setuptools ]; build-system = [ pythonPackages.setuptools ];
# Upstream setup.py refuses wheel builds unless HERMES_NIX_BUILD=1 is set;
# their nix/python.nix sets it in the build sandbox (see setup.py ~line 32).
env.HERMES_NIX_BUILD = "1";
# litellm is compromised — strip it from wheel metadata so pythonRuntimeDepsCheck passes # litellm is compromised — strip it from wheel metadata so pythonRuntimeDepsCheck passes
pythonRemoveDeps = [ "litellm" ]; pythonRemoveDeps = [ "litellm" ];
pythonRelaxDeps = true; pythonRelaxDeps = true;
@ -231,6 +256,8 @@ pythonPackages.buildPythonApplication {
mcp mcp
# ACP # ACP
agent-client-protocol agent-client-protocol
# Relay (lazy-imported per profile via agent/relay_runtime.py)
nemo-relay
]; ];
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
@ -241,6 +268,10 @@ pythonPackages.buildPythonApplication {
# Upstream pyproject.toml may be missing minisweagent_path / mini_swe_runner # Upstream pyproject.toml may be missing minisweagent_path / mini_swe_runner
# from py-modules. Also ensure mini-swe-agent/src is importable. # from py-modules. Also ensure mini-swe-agent/src is importable.
postPatch = '' postPatch = ''
# Relax pinned build backend: upstream requires setuptools==83.0.0, nixpkgs
# (locked c06b4ae) ships 80.10.1; the exact pin fails the pypa build check.
sed -i 's/setuptools==83.0.0/setuptools>=80/' pyproject.toml
# Fix: add minisweagent_path.py to py-modules if missing from pyproject.toml # Fix: add minisweagent_path.py to py-modules if missing from pyproject.toml
if [ -f minisweagent_path.py ] && ! grep -q minisweagent_path pyproject.toml; then if [ -f minisweagent_path.py ] && ! grep -q minisweagent_path pyproject.toml; then
sed -i 's/py-modules = \[/py-modules = ["minisweagent_path", /' pyproject.toml sed -i 's/py-modules = \[/py-modules = ["minisweagent_path", /' pyproject.toml