From 195a36a770e2b75d6810dd25b5e7bb30fc9a4c83 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 2 Apr 2025 11:34:46 +0200 Subject: [PATCH] python313Packages.pytest-check: update build-system --- pkgs/development/python-modules/pytest-check/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-check/default.nix b/pkgs/development/python-modules/pytest-check/default.nix index 6e10824cd43f..f1d9dc5056a5 100644 --- a/pkgs/development/python-modules/pytest-check/default.nix +++ b/pkgs/development/python-modules/pytest-check/default.nix @@ -2,7 +2,7 @@ lib, buildPythonPackage, fetchPypi, - flit-core, + hatchling, pytest, pytestCheckHook, }: @@ -18,7 +18,7 @@ buildPythonPackage rec { hash = "sha256-Ex+letLw4h45iG4FJVFCu1hOYYgaXkWE/QaxSq5j7l0="; }; - nativeBuildInputs = [ flit-core ]; + build-system = [ hatchling ]; buildInputs = [ pytest ];