diff --git a/pkgs/development/python-modules/pgcli/default.nix b/pkgs/development/python-modules/pgcli/default.nix index f5eb409af6e8..51ab5f2f0189 100644 --- a/pkgs/development/python-modules/pgcli/default.nix +++ b/pkgs/development/python-modules/pgcli/default.nix @@ -73,7 +73,6 @@ buildPythonPackage rec { changelog = "https://github.com/dbcli/pgcli/raw/v${version}/changelog.rst"; license = licenses.bsd3; maintainers = with maintainers; [ - dywedir SuperSandro2000 ]; }; diff --git a/pkgs/development/python-modules/pgspecial/default.nix b/pkgs/development/python-modules/pgspecial/default.nix index 10fe8a87c17c..e00421c7be03 100644 --- a/pkgs/development/python-modules/pgspecial/default.nix +++ b/pkgs/development/python-modules/pgspecial/default.nix @@ -11,6 +11,7 @@ setuptools, setuptools-scm, sqlparse, + stdenv, }: buildPythonPackage rec { @@ -34,6 +35,9 @@ buildPythonPackage rec { psycopg ]; + # postgresqlTestHook is not available on Darwin + doCheck = stdenv.hostPlatform.isLinux; + nativeCheckInputs = [ configobj pytestCheckHook @@ -59,6 +63,6 @@ buildPythonPackage rec { homepage = "https://github.com/dbcli/pgspecial"; changelog = "https://github.com/dbcli/pgspecial/releases/tag/v${version}"; license = licenses.bsd3; - maintainers = [ ]; + maintainers = [ lib.maintainers.SuperSandro2000 ]; }; }