python313Packages.pgspecial: skip tests on darwin as postgresqlTestHook is not available there

Changed files
+4
pkgs
development
python-modules
pgspecial
+4
pkgs/development/python-modules/pgspecial/default.nix
···
setuptools,
setuptools-scm,
sqlparse,
+
stdenv,
}:
buildPythonPackage rec {
···
sqlparse
psycopg
];
+
+
# postgresqlTestHook is not available on Darwin
+
doCheck = stdenv.hostPlatform.isLinux;
nativeCheckInputs = [
configobj