Merge pull request #183944 from mweinelt/psycopg

authored by

Martin Weinelt and committed by
GitHub
7945cf18 ecf0fd94

+4 -23
+2 -21
pkgs/development/python-modules/psycopg/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , fetchurl 6 5 , pythonOlder 7 6 , substituteAll ··· 28 27 29 28 let 30 29 pname = "psycopg"; 31 - version = "3.0.15"; 30 + version = "3.0.16"; 32 31 in 33 32 34 33 buildPythonPackage { ··· 41 40 owner = "psycopg"; 42 41 repo = pname; 43 42 rev = version; 44 - hash = "sha256-1Wtp0wDuS6dxa1+u6DXu9fDLU7OtgsCUdbdcO5nhkxU="; 43 + hash = "sha256-jKhpmCcDi7FyMSpn51eSukFvmu3yacNovmRYG9jnu3g="; 45 44 }; 46 45 47 46 outputs = [ ··· 61 60 (substituteAll { 62 61 src = ./libpq.patch; 63 62 libpq = "${postgresql.lib}/lib/libpq.so"; 64 - }) 65 - 66 - # Work around docs build issues 67 - # https://github.com/psycopg/psycopg/issues/337 68 - (fetchpatch { 69 - name = "sphinx-5.0-compat.patch"; 70 - url = "https://github.com/psycopg/psycopg/commit/ebff3a8392f002100d1e71d3deb94f27fb8cc0cf.patch"; 71 - hash = "sha256-QP9I6/xVJyWj5MQqWqxtmdBlesNUOwpYSMuzogJSnos="; 72 - }) 73 - (fetchpatch { 74 - name = "libpq-sqml-env-var.patch"; 75 - url = "https://github.com/psycopg/psycopg/commit/adf9cbdc1020abf87ae602fe0eb493c294459a93.patch"; 76 - hash = "sha256-HJ2Cx7Vg7PSitDEOqCUF7ehNU8aI+iFT886dk2wHsAI="; 77 - }) 78 - (fetchpatch { 79 - name = "avoid-dnspython-import-in-docs.patch"; 80 - url = "https://github.com/psycopg/psycopg/commit/3058421503b3fcbcf06382d558aac7b9ca2eaaec.patch"; 81 - hash = "sha256-D4vj5STafkQ34HWUyKZ3A9w9bY8holifPn3lsBjfVZA="; 82 63 }) 83 64 ]; 84 65
+2 -2
pkgs/development/python-modules/sphinx-autodoc-typehints/default.nix
··· 8 8 9 9 let 10 10 pname = "sphinx-autodoc-typehints"; 11 - version = "1.18.3"; 11 + version = "1.19.1"; 12 12 in 13 13 14 14 buildPythonPackage { ··· 20 20 src = fetchPypi { 21 21 pname = "sphinx_autodoc_typehints"; 22 22 inherit version; 23 - hash = "sha256-wE2PjXDpiJYOJbIGrzmpDfhOfiwIW7JOEjvDaEAhsxM="; 23 + hash = "sha256-bIQdtV4Om+BIP/OWKiFStg55MG9CiNjE5+hqyESGpeo="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [