tfc-nixos/python312overlay.nix
2024-12-18 11:45:47 -06:00

14 lines
306 B
Nix

self: super: {
python312 = let
packageOverrides = python-self: python-super: {
openai = python-super.openai.overridePythonAttrs {
doCheck = false;
doInstallCheck = false;
pytestCheckPhase = false;
disabledTests = [
"async"
];
};
};
}