python3Packages.sqlalchemy-citext: add missing implicit dep, psycopg2

This commit is contained in:
Jonathan Ringer 2021-04-21 10:42:29 -07:00 committed by Jonathan Ringer
parent b029adf1ef
commit 2094cc3f30

View file

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, psycopg2
, sqlalchemy , sqlalchemy
, python , python
}: }:
@ -16,6 +17,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
sqlalchemy sqlalchemy
# not listed in `install_requires`, but is imported in citext/__init__.py
psycopg2
]; ];
# tests are not packaged in pypi tarball # tests are not packaged in pypi tarball