python311Packages.pg8000 0 -> 1 attrpath: python311Packages.pg8000 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/ydq87bnwbv5jfdmhhfjl1i8hyhal1azj-packages.json.drv building '/nix/store/ydq87bnwbv5jfdmhhfjl1i8hyhal1azj-packages.json.drv'... Going to be running update for following packages: - python3.11-pg8000-1.30.5 Press Enter key to continue... Running update for: - python3.11-pg8000-1.30.5: UPDATING ... - python3.11-pg8000-1.30.5: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pg8000/default.nix b/pkgs/development/python-modules/pg8000/default.nix index 3bd937c6d492..3a1fc7e31cb5 100644 --- a/pkgs/development/python-modules/pg8000/default.nix +++ b/pkgs/development/python-modules/pg8000/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "pg8000"; - version = "1.30.5"; + version = "1.31.2"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-By960AzXI2lcsun8AsHfuEx4FFXpe43m9MQoHuoIB4w="; + hash = "sha256-HqRs8J2Oygf+fqre/XlR43vuf6vmdd8WTxpXL/swCHY="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.30.5" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , importlib-metadata , passlib , python-dateutil , pythonOlder , scramp , hatchling , versioningit }: buildPythonPackage rec { pname = "pg8000"; version = "1.31.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-sREw1MYV3TBi6o/tgUMGSnl4t/5tRPFLciYdQ8jicIc="; }; build-system = [ hatchling versioningit ]; dependencies = [ passlib python-dateutil scramp ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; # Tests require a running PostgreSQL instance doCheck = false; pythonImportsCheck = [ "pg8000" ]; meta = with lib; { description = "Python driver for PostgreSQL"; homepage = "https://github.com/tlocke/pg8000"; changelog = "https://github.com/tlocke/pg8000#release-notes"; license = with licenses; [ bsd3 ]; maintainers = with maintainers; [ domenkozar ]; platforms = platforms.unix; }; }