python313Packages.pgspecial: skip tests on darwin as postgresqlTestHook is not available there, adopt, pgcli: update maintainers (#439828)

Sandro 02fb1903 3bb3bf51

Changed files
+5 -2
pkgs
development
python-modules
pgcli
pgspecial
-1
pkgs/development/python-modules/pgcli/default.nix
···
changelog = "https://github.com/dbcli/pgcli/raw/v${version}/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [
-
dywedir
SuperSandro2000
];
};
+5 -1
pkgs/development/python-modules/pgspecial/default.nix
···
setuptools,
setuptools-scm,
sqlparse,
+
stdenv,
}:
buildPythonPackage rec {
···
psycopg
];
+
# postgresqlTestHook is not available on Darwin
+
doCheck = stdenv.hostPlatform.isLinux;
+
nativeCheckInputs = [
configobj
pytestCheckHook
···
homepage = "https://github.com/dbcli/pgspecial";
changelog = "https://github.com/dbcli/pgspecial/releases/tag/v${version}";
license = licenses.bsd3;
-
maintainers = [ ];
+
maintainers = [ lib.maintainers.SuperSandro2000 ];
};
}