From 9de8b096dafeabcc509896068e07e117e48950bb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Jan 2026 13:15:09 +0100 Subject: [PATCH 1/2] python313Packages.pytest-gitconfig: 0.8.0 -> 0.9.0 Diff: https://github.com/noirbizarre/pytest-gitconfig/compare/0.8.0...0.9.0 Changelog: https://github.com/noirbizarre/pytest-gitconfig/blob/refs/tags/0.9.0/CHANGELOG.md --- pkgs/development/python-modules/pytest-gitconfig/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-gitconfig/default.nix b/pkgs/development/python-modules/pytest-gitconfig/default.nix index b1f5e4206e50..ed815f658cf6 100644 --- a/pkgs/development/python-modules/pytest-gitconfig/default.nix +++ b/pkgs/development/python-modules/pytest-gitconfig/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "pytest-gitconfig"; - version = "0.8.0"; + version = "0.9.0"; pyproject = true; src = fetchFromGitHub { owner = "noirbizarre"; repo = "pytest-gitconfig"; tag = version; - hash = "sha256-5DfG74mEvsWHH2xPyG1mNcWp9/DgpveLbaSEOoRzD+g="; + hash = "sha256-z3W9AL74i47k/eYCbFMn3foVaD2h7lFrGzyOnbDwkyc="; }; build-system = [ pdm-backend ]; From 4ae70791c38066e24d84d39b8385bbf3ec4a4360 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Jan 2026 13:17:10 +0100 Subject: [PATCH 2/2] python313Packages.pytest-gitconfig: migrate to finalAttrs --- .../python-modules/pytest-gitconfig/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pytest-gitconfig/default.nix b/pkgs/development/python-modules/pytest-gitconfig/default.nix index ed815f658cf6..a243a4063291 100644 --- a/pkgs/development/python-modules/pytest-gitconfig/default.nix +++ b/pkgs/development/python-modules/pytest-gitconfig/default.nix @@ -8,7 +8,7 @@ pytestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "pytest-gitconfig"; version = "0.9.0"; pyproject = true; @@ -16,7 +16,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "noirbizarre"; repo = "pytest-gitconfig"; - tag = version; + tag = finalAttrs.version; hash = "sha256-z3W9AL74i47k/eYCbFMn3foVaD2h7lFrGzyOnbDwkyc="; }; @@ -34,8 +34,8 @@ buildPythonPackage rec { meta = { description = "Pytest gitconfig sandbox"; homepage = "https://github.com/noirbizarre/pytest-gitconfig"; - changelog = "https://github.com/noirbizarre/pytest-gitconfig/blob/${src.rev}/CHANGELOG.md"; + changelog = "https://github.com/noirbizarre/pytest-gitconfig/blob/${finalAttrs.src.rev}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +})