python310Packages.psycopg2 2.9.5 -> 2.9.9 https://repology.org/project/python:psycopg2/versions attrpath: python310Packages.psycopg2 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/skyqgxs5y5qk0wwhyvhsfxkv4m8v01lr-packages.json.drv building '/nix/store/skyqgxs5y5qk0wwhyvhsfxkv4m8v01lr-packages.json.drv'... Going to be running update for following packages: - python3.10-psycopg2-2.9.5 Press Enter key to continue... Running update for: - python3.10-psycopg2-2.9.5: UPDATING ... - python3.10-psycopg2-2.9.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/psycopg2/default.nix b/pkgs/development/python-modules/psycopg2/default.nix index b697c66613b3..1225c82fac4b 100644 --- a/pkgs/development/python-modules/psycopg2/default.nix +++ b/pkgs/development/python-modules/psycopg2/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "psycopg2"; - version = "2.9.5"; + version = "2.9.9"; format = "setuptools"; # Extension modules don't work well with PyPy. Use psycopg2cffi instead. @@ -21,7 +21,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - hash = "sha256-pSRtLmg6ly4hh6hxS1ws+BVsBkYp+amxqHPBcw2eJFo="; + hash = "sha256-0UVL3pP7HiJBZoEWlNYA50ZDDABvuwMeoG7MLqQb8VY="; }; outputs = [ "out" "doc" ]; No auto update branch exists Old version 2.9.5" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , pythonOlder , isPyPy , fetchPypi , postgresql , openssl , sphinxHook , sphinx-better-theme }: buildPythonPackage rec { pname = "psycopg2"; version = "2.9.7"; format = "setuptools"; # Extension modules don't work well with PyPy. Use psycopg2cffi instead. # c.f. https://github.com/NixOS/nixpkgs/pull/104151#issuecomment-729750892 disabled = pythonOlder "3.6" || isPyPy; src = fetchPypi { inherit pname version; hash = "sha256-8AzDW9cRnx/tF7hb0QB4VRlN3iy9jeAauOuxdIdECtg="; }; outputs = [ "out" "doc" ]; nativeBuildInputs = [ postgresql sphinxHook sphinx-better-theme ]; buildInputs = lib.optionals stdenv.isDarwin [ openssl ]; sphinxRoot = "doc/src"; # Requires setting up a PostgreSQL database doCheck = false; pythonImportsCheck = [ "psycopg2" ]; meta = with lib; { description = "PostgreSQL database adapter for the Python programming language"; homepage = "https://www.psycopg.org"; license = with licenses; [ lgpl3Plus zpl20 ]; maintainers = with maintainers; [ ]; }; }