From de6506d81f59592e442e9b56d3c9de862e7ab404 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 21 Feb 2026 13:44:24 +0000 Subject: [PATCH 1/2] python3Packages.fast-query-parsers: 1.0.3 -> 1.1.0 --- .../python-modules/fast-query-parsers/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/fast-query-parsers/default.nix b/pkgs/development/python-modules/fast-query-parsers/default.nix index 3ee5c99419d5..74c5a2b1a610 100644 --- a/pkgs/development/python-modules/fast-query-parsers/default.nix +++ b/pkgs/development/python-modules/fast-query-parsers/default.nix @@ -11,19 +11,19 @@ buildPythonPackage rec { pname = "fast-query-parsers"; - version = "1.0.3"; + version = "1.1.0"; pyproject = true; src = fetchFromGitHub { owner = "litestar-org"; repo = "fast-query-parsers"; tag = "v${version}"; - hash = "sha256-08xL0sOmUzsZYtM1thYUV93bj9ERr3LaVrW46zBrzeE="; + hash = "sha256-gxKySLbBtX/6bXuTtiFw50UhmUwZE8lDaQ5P/g09Qnk="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-kp5bCmHYMS/e8eM6HrRw0JlVaxwPscFGDLQ0PX4ZIC4="; + hash = "sha256-eMZBKG5j9v3EVVwa7ooZcuIZK5ljeyc+2k1dw3O/TcQ="; }; build-system = [ From 73639714cc3eb8fc5177006c38aee5ac2502f56c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 22 Feb 2026 15:46:29 +0100 Subject: [PATCH 2/2] python314Packages.fast-query-parsers: migrate to finalAttrs --- .../python-modules/fast-query-parsers/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/fast-query-parsers/default.nix b/pkgs/development/python-modules/fast-query-parsers/default.nix index 74c5a2b1a610..10bf15c17c79 100644 --- a/pkgs/development/python-modules/fast-query-parsers/default.nix +++ b/pkgs/development/python-modules/fast-query-parsers/default.nix @@ -9,7 +9,7 @@ rustPlatform, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "fast-query-parsers"; version = "1.1.0"; pyproject = true; @@ -17,12 +17,12 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "litestar-org"; repo = "fast-query-parsers"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-gxKySLbBtX/6bXuTtiFw50UhmUwZE8lDaQ5P/g09Qnk="; }; cargoDeps = rustPlatform.fetchCargoVendor { - inherit pname version src; + inherit (finalAttrs) pname version src; hash = "sha256-eMZBKG5j9v3EVVwa7ooZcuIZK5ljeyc+2k1dw3O/TcQ="; }; @@ -41,8 +41,8 @@ buildPythonPackage rec { meta = { description = "Ultra-fast query string and url-encoded form-data parsers"; homepage = "https://github.com/litestar-org/fast-query-parsers"; - changelog = "https://github.com/litestar-org/fast-query-parsers/releases/tag/${src.tag}"; + changelog = "https://github.com/litestar-org/fast-query-parsers/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +})