python312Packages.apsw 3.44.2.0 -> 3.45.2.0 https://github.com/rogerbinns/apsw/releases attrpath: python312Packages.apsw 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/if5plzb80sx8hi3rslg6xlq6csykb3ck-packages.json.drv building '/nix/store/if5plzb80sx8hi3rslg6xlq6csykb3ck-packages.json.drv'... Going to be running update for following packages: - python3.12-apsw-3.44.2.0 Press Enter key to continue... Running update for: - python3.12-apsw-3.44.2.0: UPDATING ... - python3.12-apsw-3.44.2.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/apsw/default.nix b/pkgs/development/python-modules/apsw/default.nix index aafdf6ac72b2..bdd640a4ce50 100644 --- a/pkgs/development/python-modules/apsw/default.nix +++ b/pkgs/development/python-modules/apsw/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "apsw"; - version = "3.44.2.0"; + version = "3.45.2.0"; format = "setuptools"; disabled = isPyPy; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "rogerbinns"; repo = "apsw"; rev = "refs/tags/${version}"; - hash = "sha256-H7aqZHU4SXNrfbv6iwHckkNm5MeGkro42+njSoFJgS4="; + hash = "sha256-tTi3/10W4OoGH6PQVhvPWc5o09on5BZrWoAvrfh4C/E="; }; buildInputs = [ No auto update branch exists Old version 3.44.2.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , sqlite , isPyPy , python }: buildPythonPackage rec { pname = "apsw"; version = "3.45.1.0"; format = "setuptools"; disabled = isPyPy; src = fetchFromGitHub { owner = "rogerbinns"; repo = "apsw"; rev = "refs/tags/${version}"; hash = "sha256-NkpkciLR2TgfK/7UQHEzvQu8qRj4UJyOlGQbiV23qrc="; }; buildInputs = [ sqlite ]; # Project uses custom test setup to exclude some tests by default, so using pytest # requires more maintenance # https://github.com/rogerbinns/apsw/issues/335 checkPhase = '' ${python.interpreter} setup.py test ''; pythonImportsCheck = [ "apsw" ]; meta = with lib; { description = "A Python wrapper for the SQLite embedded relational database engine"; homepage = "https://github.com/rogerbinns/apsw"; license = licenses.zlib; maintainers = with maintainers; [ gador ]; }; }