Skip to content

Commit

Permalink
chore: work around missing optional-dependencies attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Oct 29, 2024
1 parent a012bcf commit 47929d6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2144,8 +2144,15 @@ lib.composeManyExtensions [
propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ final.pyutilib ];
});

paramiko = prev.paramiko.overridePythonAttrs (_: {
paramiko = prev.paramiko.overridePythonAttrs (old: {
doCheck = false; # requires networking

optional-dependencies = old.optional-dependencies or {
ed25519 = [
final.pynacl
final.bcrypt
];
};
});

parsel = prev.parsel.overridePythonAttrs (
Expand Down

0 comments on commit 47929d6

Please sign in to comment.