Skip to content

Commit 5913dfe

Browse files
committed
Fix: Nuls2 dependency failed compiling in Nix env
1 parent bdd4cfb commit 5913dfe

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/nix-ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,10 @@ jobs:
3030
# Use channel nixos-23.11 for Linux and nixpkgs-23.11-darwin for macOS
3131
nix_path: nixpkgs=channel:${{ matrix.os == 'macos-latest' && 'nixpkgs-24.05-darwin' || 'nixos-24.05' }}
3232

33+
- name: Disable incompatible dependency of `nuls2`
34+
run: |
35+
sed -i.bak '/py-ed25519-bindings/ s/^[[:space:]]*/# /' pyproject.toml
36+
rm pyproject.toml.bak
37+
3338
- name: Run tests
34-
run: nix-shell --run "hatch run testing:test -- ./src/ ./test/"
39+
run: nix-shell --run "hatch run testing:test"

0 commit comments

Comments
 (0)