python3Packages.asyncpg: enable tests again

Those were accidentally disabled a while ago, when postgresql.doCheck
was set to false unconditionally. Instead the checks are now done as
part of the installCheck phase.
This commit is contained in:
Wolfgang Walther
2025-03-24 21:40:43 +01:00
parent 6da63280df
commit 98d6d2a7ca
@@ -24,7 +24,7 @@ buildPythonPackage rec {
};
# sandboxing issues on aarch64-darwin, see https://github.com/NixOS/nixpkgs/issues/198495
doCheck = postgresql.doCheck;
doCheck = postgresql.doInstallCheck;
# required for compatibility with Python versions older than 3.11
# see https://github.com/MagicStack/asyncpg/blob/v0.29.0/asyncpg/_asyncio_compat.py#L13