diff --git a/pkgs/development/python-modules/pytest-repeat/default.nix b/pkgs/development/python-modules/pytest-repeat/default.nix index 8df24c2be1f8..8387f0302501 100644 --- a/pkgs/development/python-modules/pytest-repeat/default.nix +++ b/pkgs/development/python-modules/pytest-repeat/default.nix @@ -6,23 +6,20 @@ hatch-vcs, pytest, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "pytest-repeat"; - version = "0.9.3"; + version = "0.9.4"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { pname = "pytest_repeat"; inherit version; - hash = "sha256-/9ODbfzWe7JwvsZIszDiC+N9KWZEjEFIxAktHoq6gYU="; + hash = "sha256-2SrBTfqm/8/mkX5dFvDJvII4DBNbA8Kl9BLSY38iRIU="; }; - nativeBuildInputs = [ + build-system = [ hatchling hatch-vcs ];