15 lines
365 B
Nix
15 lines
365 B
Nix
self: super: {
|
|
python312 = let
|
|
packageOverrides = python-self: python-super: {
|
|
openai = python-super.openai.overridePythonAttrs {
|
|
doCheck = false;
|
|
doInstallCheck = false;
|
|
pytestCheckPhase = false;
|
|
disabledTests = [
|
|
"async"
|
|
];
|
|
};
|
|
};
|
|
in super.python312.override {inherit packageOverrides;};
|
|
}
|