[staging-next] python3Packages.{sqlglot: 28.6.0 -> 28.9.0,sqlframe: 3.45.0 -> 3.46.2,narwhals: 2.15.0 -> 2.16.0} (#493158)

This commit is contained in:
Vladimír Čunát
2026-02-23 05:14:09 +00:00
committed by GitHub
3 changed files with 10 additions and 6 deletions
@@ -22,14 +22,14 @@
buildPythonPackage rec {
pname = "narwhals";
version = "2.15.0";
version = "2.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "narwhals-dev";
repo = "narwhals";
tag = "v${version}";
hash = "sha256-7tLxMtFWpk0ZpR9UYtKdk6L2UXb/ah1ZA6XZ4RbnvsI=";
hash = "sha256-k7CeM8Q4JgKbkLisAaVrljro4diOf0K0immek6AI0vM=";
};
build-system = [ hatchling ];
@@ -81,6 +81,10 @@ buildPythonPackage rec {
# ibis improvements cause strict XPASS failures (tests expected to fail now pass)
"test_empty_scalar_reduction_with_columns"
"test_collect_empty"
"test_first_last_expr_over_order_by"
"test_first_expr_broadcasting"
# sqlframe improvements cause strict XPASS failures (tests expected to fail now pass)
"test_unique_expr"
];
disabledTestPaths = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
@@ -38,14 +38,14 @@
buildPythonPackage rec {
pname = "sqlframe";
version = "3.45.0";
version = "3.46.2";
pyproject = true;
src = fetchFromGitHub {
owner = "eakmanrq";
repo = "sqlframe";
tag = "v${version}";
hash = "sha256-S0tcdmdA9SptmaFT/G3efO3yPLWrBOJVDLCK3Zu2r9w=";
hash = "sha256-WTeJXiIkyj9FgO1w3P6JsCTtpGzezWnsiz/boB9PdIU=";
};
build-system = [ setuptools-scm ];
@@ -19,14 +19,14 @@
buildPythonPackage rec {
pname = "sqlglot";
version = "28.6.0";
version = "28.9.0";
pyproject = true;
src = fetchFromGitHub {
repo = "sqlglot";
owner = "tobymao";
tag = "v${version}";
hash = "sha256-1RAjGqu2D/wrec/sryPGZlPnaBGkyhYpzdaZu9KYh2Q=";
hash = "sha256-2AmHKGAoDF8w9k8VN9d25Js3UiSh8YNqdGRHN7VqRpw=";
};
build-system = [