mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Merge pull request #152 from takeda/psycopg2
Add openssl for psycopg2-binary on Darwin
This commit is contained in:
commit
3204df6699
1 changed files with 2 additions and 0 deletions
|
@ -475,6 +475,8 @@ self: super:
|
|||
|
||||
psycopg2-binary = super.psycopg2-binary.overridePythonAttrs (
|
||||
old: {
|
||||
buildInputs = old.buildInputs
|
||||
++ lib.optional stdenv.isDarwin pkgs.openssl;
|
||||
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.postgresql ];
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue