mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Add uvloop overrides for MacOS builds
This commit is contained in:
parent
82166c8a49
commit
3ca47a1220
1 changed files with 9 additions and 0 deletions
|
@ -545,6 +545,15 @@ self: super:
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
uvloop = super.uvloop.overrideAttrs (
|
||||||
|
old: {
|
||||||
|
buildInputs = old.buildInputs ++ lib.optionals stdenv.isDarwin [
|
||||||
|
pkgs.darwin.apple_sdk.frameworks.ApplicationServices
|
||||||
|
pkgs.darwin.apple_sdk.frameworks.CoreServices
|
||||||
|
];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
# Stop infinite recursion by using bootstrapped pkg from nixpkgs
|
# Stop infinite recursion by using bootstrapped pkg from nixpkgs
|
||||||
wheel = (
|
wheel = (
|
||||||
pkgs.python3.pkgs.override {
|
pkgs.python3.pkgs.override {
|
||||||
|
|
Loading…
Add table
Reference in a new issue