python313Packages.pytest-gitconfig: 0.8.0 -> 0.9.0 (#477130)

This commit is contained in:
Fabian Affolter
2026-01-05 13:15:27 +00:00
committed by GitHub
@@ -8,16 +8,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
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=";
tag = finalAttrs.version;
hash = "sha256-z3W9AL74i47k/eYCbFMn3foVaD2h7lFrGzyOnbDwkyc=";
};
build-system = [ pdm-backend ];
@@ -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 ];
};
}
})