Merge pull request #127838 from dotlambda/pg8000_1_12-drop

This commit is contained in:
Sandro 2021-06-23 13:27:32 +02:00 committed by GitHub
commit 6d4f69155b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ let
mongo = (ps: [ ps.pymongo ]);
network = (ps: [ ps.psutil ]);
nginx = (ps: []);
postgres = (ps: with ps; [ pg8000_1_12 psycopg2 ]);
postgres = (ps: with ps; [ pg8000 psycopg2 ]);
};
# All integrations (default + extra):

View file

@ -5184,8 +5184,6 @@ in {
pg8000 = callPackage ../development/python-modules/pg8000 { };
pg8000_1_12 = callPackage ../development/python-modules/pg8000/1_12.nix { };
pgcli = callPackage ../development/tools/database/pgcli { };
pglast = callPackage ../development/python-modules/pglast { };

View file

@ -370,6 +370,8 @@ with self; with super; {
pathpy = callPackage ../development/python-modules/path.py/2.nix { };
pg8000 = callPackage ../development/python-modules/pg8000/1_12.nix { };
pillow = callPackage ../development/python-modules/pillow/6.nix {
inherit (pkgs) freetype libjpeg zlib libtiff libwebp tcl lcms2 tk;
inherit (pkgs.xorg) libX11;