about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-11-16 01:03:42 +0100
committerGitHub <noreply@github.com>2023-11-16 01:03:42 +0100
commit2a397ad1694fa03cc6383f0c4fdecb11648a019e (patch)
treedd95d09ea76009a89706bfc0e7c45647818a96a9 /pkgs
parent91c993afb9eff5868cb77ad5b9ad133368298713 (diff)
parent89842c3796c4ee9524be9c1ba964514ae64f4470 (diff)
Merge pull request #267739 from a-n-n-a-l-e-e/psycopg_disable_tests
python311Packages.psycopg: disable timing related test
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/psycopg/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/psycopg/default.nix b/pkgs/development/python-modules/psycopg/default.nix
index 65156543e87d6..24063596918ca 100644
--- a/pkgs/development/python-modules/psycopg/default.nix
+++ b/pkgs/development/python-modules/psycopg/default.nix
@@ -50,6 +50,14 @@ let
       libpq = "${postgresql.lib}/lib/libpq${stdenv.hostPlatform.extensions.sharedLibrary}";
       libc = "${stdenv.cc.libc}/lib/libc.so.6";
     })
+
+    # https://github.com/psycopg/psycopg/pull/669
+    # mark some tests as timing remove on next version update
+    (fetchpatch {
+      name = "mark_tests_as_timing.patch";
+      url = "https://github.com/psycopg/psycopg/commit/00a3c640dd836328ba15931b400b012171f648c2.patch";
+      hash = "sha256-DoVZv1yy9gHOKl0AdVLir+C+UztJZVjboLhS5af2944=";
+    })
   ];
 
   baseMeta = {