From d0190b008bff158eab9f2dc24622c376eb2ba9c5 Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Sat, 19 Jul 2025 09:50:23 +0200 Subject: [PATCH] python3Packages.hatch-vcs: use gitMinimal --- pkgs/development/python-modules/hatch-vcs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hatch-vcs/default.nix b/pkgs/development/python-modules/hatch-vcs/default.nix index 3592cbf86d80..1810472ea583 100644 --- a/pkgs/development/python-modules/hatch-vcs/default.nix +++ b/pkgs/development/python-modules/hatch-vcs/default.nix @@ -4,7 +4,7 @@ fetchPypi, pytestCheckHook, pythonOlder, - git, + gitMinimal, hatchling, setuptools-scm, }: @@ -30,7 +30,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ - git + gitMinimal pytestCheckHook ];