From 98d6d2a7cad856d212227a812ed0697598129f72 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sun, 23 Mar 2025 16:55:48 +0100 Subject: [PATCH] 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. --- pkgs/development/python-modules/asyncpg/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/asyncpg/default.nix b/pkgs/development/python-modules/asyncpg/default.nix index 43bb127b6328..30a238b07a83 100644 --- a/pkgs/development/python-modules/asyncpg/default.nix +++ b/pkgs/development/python-modules/asyncpg/default.nix @@ -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