make things work with Python 3.13 + fix Nix (#2908)

* update pyproject to make things work with python 3.13

* fix nix build
This commit is contained in:
Pavol Rusnak 2025-01-23 22:11:45 +01:00 committed by GitHub
parent f845bfe651
commit cb5cc1e5e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 297 additions and 237 deletions

View file

@ -34,6 +34,16 @@
protobuf = prev.protobuf.override { preferWheel = true; };
ruff = prev.ruff.override { preferWheel = true; };
wallycore = prev.wallycore.override { preferWheel = true; };
tlv8 = prev.tlv8.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [
prev.setuptools
];
});
pynostr = prev.pynostr.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [
prev.setuptools-scm
];
});
});
};
});