mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Added openssl dependency to psycopg2 on Darwin.
This commit is contained in:
parent
270a0b26b7
commit
8678bc3481
1 changed files with 2 additions and 0 deletions
|
@ -451,6 +451,8 @@ self: super:
|
|||
|
||||
psycopg2 = super.psycopg2.overridePythonAttrs (
|
||||
old: {
|
||||
buildInputs = old.buildInputs
|
||||
++ lib.optional stdenv.isDarwin pkgs.openssl;
|
||||
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.postgresql ];
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue