This commit is contained in:
mjallen18
2026-03-20 17:24:19 -05:00
parent 93aaf52b7e
commit 27790713be
11 changed files with 535 additions and 27 deletions

View File

@@ -0,0 +1,12 @@
{ ... }:
final: prev: {
python3 = prev.python3.override {
packageOverrides = _pyFinal: pyPrev: {
radios = pyPrev.radios.overridePythonAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pyPrev.pythonRelaxDepsHook ];
pythonRelaxDeps = [ "pycountry" ];
});
};
};
python3Packages = final.python3.pkgs;
}