python312Packages.pg8000 1.30.3 -> 1.30.5 https://repology.org/project/python:pg8000/versions attrpath: python312Packages.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/pfc4q4drc0ikkihb8b8r4k3sbxnqnfvy-packages.json.drv building '/nix/store/pfc4q4drc0ikkihb8b8r4k3sbxnqnfvy-packages.json.drv'... Going to be running update for following packages: - python3.12-pg8000-1.30.3 Press Enter key to continue... Running update for: - python3.12-pg8000-1.30.3: UPDATING ... - python3.12-pg8000-1.30.3: 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 12144a0bb8d2..3bd937c6d492 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.3"; + version = "1.30.5"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-Tnx1dHpDpJwVYj+SWDu24dAj6ubq8sLh5t5Nf7f6QE8="; + hash = "sha256-By960AzXI2lcsun8AsHfuEx4FFXpe43m9MQoHuoIB4w="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.30.3" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , importlib-metadata , passlib , python-dateutil , pythonOlder , scramp , setuptools , versioningit }: buildPythonPackage rec { pname = "pg8000"; version = "1.30.5"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-By960AzXI2lcsun8AsHfuEx4FFXpe43m9MQoHuoIB4w="; }; nativeBuildInputs = [ setuptools versioningit ]; propagatedBuildInputs = [ 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; }; }