Fix tlv8 missing setuptools build dependency
tlv8 (pulled in by pynostr) is sdist-only and uses setuptools without declaring it, breaking uv2nix build isolation. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
1c9d7ea3f1
commit
b5bcef3d0a
1 changed files with 5 additions and 0 deletions
|
|
@ -58,6 +58,11 @@
|
|||
lib.composeManyExtensions [
|
||||
pyproject-build-systems.overlays.wheel
|
||||
overlay
|
||||
(final: prev: {
|
||||
tlv8 = prev.tlv8.overrideAttrs (old: {
|
||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ final.setuptools ];
|
||||
});
|
||||
})
|
||||
]
|
||||
)
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue