Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.sqlglot: 26.16.2 -> 27.6.0

https://github.com/tobymao/sqlglot/blob/v27.6.0/CHANGELOG.md

Changed files
+2 -2
pkgs
development
python-modules
sqlglot
+2 -2
pkgs/development/python-modules/sqlglot/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "sqlglot"; 20 - version = "26.16.2"; 20 + version = "27.6.0"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 repo = "sqlglot"; 25 25 owner = "tobymao"; 26 26 tag = "v${version}"; 27 - hash = "sha256-uX72AHr4IC+u5AYkW/3myruVPs5NZ1V3THVg+9GWxpg="; 27 + hash = "sha256-/+hrbyAQJHbKzjaBr9ssuXuKpbCSWAarLa5oX5NqfOc="; 28 28 }; 29 29 30 30 build-system = [