From 9bd9522a093e7b67b6fe75e57ba2f22fb3d828b2 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 17 Jul 2022 21:04:46 +0200 Subject: [PATCH] python3Packages.pgspecial: psycopg2 out, psycopg in --- pkgs/development/python-modules/pgspecial/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pgspecial/default.nix b/pkgs/development/python-modules/pgspecial/default.nix index 7e629cc4978e..b2f28a189e12 100644 --- a/pkgs/development/python-modules/pgspecial/default.nix +++ b/pkgs/development/python-modules/pgspecial/default.nix @@ -2,7 +2,7 @@ , buildPythonPackage , fetchPypi , pytestCheckHook -, psycopg2 +, psycopg , click , configobj , sqlparse @@ -20,7 +20,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ click sqlparse - psycopg2 + psycopg ]; checkInputs = [ @@ -35,7 +35,8 @@ buildPythonPackage rec { meta = with lib; { description = "Meta-commands handler for Postgres Database"; - homepage = "https://pypi.python.org/pypi/pgspecial"; + homepage = "https://github.com/dbcli/pgspecial"; license = licenses.bsd3; + maintainers = with maintainers; [ ]; }; }