python311Packages.sqlparse 0 -> 1 attrpath: python311Packages.sqlparse 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] Going to be running update for following packages: - python3.11-sqlparse-0.4.4 Press Enter key to continue... Running update for: - python3.11-sqlparse-0.4.4: UPDATING ... - python3.11-sqlparse-0.4.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/sqlparse/default.nix b/pkgs/development/python-modules/sqlparse/default.nix index c0afa5eeb7c1..02e3d2c97c9f 100644 --- a/pkgs/development/python-modules/sqlparse/default.nix +++ b/pkgs/development/python-modules/sqlparse/default.nix @@ -15,13 +15,13 @@ buildPythonPackage rec { pname = "sqlparse"; - version = "0.4.4"; + version = "0.5.0"; disabled = !isPy3k; src = fetchPypi { inherit pname version; - hash = "sha256-1EYYPoS4NJ+jBh8P5/BsqUumW0JpRv/r5uPoKVMyQgw="; + hash = "sha256-cU0KSTLAWdFhifWO9UEewih6Q2DxfN0O3S0J1MUIfJM="; }; format = "pyproject"; No auto update branch exists Old version 0.4.4" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , hatchling , installShellFiles , pytestCheckHook , pythonOlder # for passthru.tests , django , django_4 , django-silk , pgadmin4 }: buildPythonPackage rec { pname = "sqlparse"; version = "0.5.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-cU0KSTLAWdFhifWO9UEewih6Q2DxfN0O3S0J1MUIfJM="; }; build-system = [ hatchling ]; nativeBuildInputs = [ installShellFiles ]; nativeCheckInputs = [ pytestCheckHook ]; postInstall = '' installManPage docs/sqlformat.1 ''; passthru.tests = { inherit django django_4 django-silk pgadmin4; }; meta = with lib; { description = "Non-validating SQL parser for Python"; longDescription = '' Provides support for parsing, splitting and formatting SQL statements. ''; homepage = "https://github.com/andialbrecht/sqlparse"; changelog = "https://github.com/andialbrecht/sqlparse/blob/${version}/CHANGELOG"; license = licenses.bsd3; mainProgram = "sqlformat"; }; }