Added openssl dependency to psycopg2 on Darwin.

This commit is contained in:
Derek Kulinski 2020-08-12 11:34:36 -07:00
parent 270a0b26b7
commit 8678bc3481

View file

@ -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 ];
}
);