nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.psycopg: 3.2.7 -> 3.2.8 (#406305)

authored by

Martin Weinelt and committed by
GitHub
6a7cd3cc 496fcd4a

+4 -5
+4 -5
pkgs/development/python-modules/psycopg/default.nix
··· 35 35 36 36 let 37 37 pname = "psycopg"; 38 - version = "3.2.7"; 38 + version = "3.2.8"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "psycopg"; 42 42 repo = "psycopg"; 43 43 tag = version; 44 - hash = "sha256-v4R+5jgC4dTrL+i6O+UCCr7+g673hKi9YmrSeROLpZs="; 44 + hash = "sha256-fSryNbWqIO5+oyU9uP7zO6TJzrtFPwrtaU0toxBysao="; 45 45 }; 46 46 47 47 patches = [ ··· 202 202 # don't depend on mypy for tests 203 203 "test_version" 204 204 "test_package_version" 205 + # expects timeout, but we have no route in the sandbox 206 + "test_connect_error_multi_hosts_each_message_preserved" 205 207 ]; 206 208 207 209 disabledTestPaths = [ ··· 222 220 "-o cache_dir=.cache" 223 221 "-m" 224 222 "'not refcount and not timing and not flakey'" 225 - # pytest.PytestRemovedIn9Warning: Marks applied to fixtures have no effect 226 - "-W" 227 - "ignore::pytest.PytestRemovedIn9Warning" 228 223 ]; 229 224 230 225 postCheck = ''